Re: Pop-up modal box when radio button clicked
This seems to work. Hope this helps anybody else that is looking for similar functionality.<script> $(function () { $( "#radio1" ).change(function() { $( "#dialog-modal" ).dialog({width: 500,...
View ArticleRe: Pop-up modal box when radio button clicked
Any help with jquery and Radiobuttonlist. Seems like not many programming in .net are familiar with jquery.
View ArticleRe: Pop-up modal box when radio button clicked
I prefer doing it on client side to save a round trip. I don't have a clue as how to use jQuery. Can anyone can help with jQuery function call. I'm using radiobuttonlist. Radiobuttonlist don't have...
View ArticleRe: Pop-up modal box when radio button clicked
handle onchange events of both RadioButtonlists in jquery.....in the onchange events check if both radiobuttonlists have values....if so then use jquery modalpopup (you can find many online) to show...
View ArticleRe: Pop-up modal box when radio button clicked
Two main ways to do this.Server side coding...Get the ajaxcontroltoolkit from codeplex(http://ajaxcontroltoolkit.codeplex.com/), use the documentation to create a modalpopupextender...
View ArticlePop-up modal box when radio button clicked
Hi,I’ve a form with 2 groups of radio buttons e.g. one group has 3 radio buttons 1, 2 and 3 and another with group with 3 radio buttons – A, B and C.When a user selects a certain combination e.g. 1...
View Article