Click here to Skip to main content
15,889,595 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have gridview and checkbox in gridview when i click on checkbox then how to show modalpopup extender.plz help me?
Posted

1 solution

HI, there are two methods to go with. one is using code behind and other is using jquery.


to show popup from code behind, use CheckedChanged event of asp:chceckbox.
then simply (from code behind)

C#
YourModalPopupExtender.Show();


by using jquery, do this

JavaScript
$('#myCheckBox').click (function ()
{
var thisCheck = $(this);
if (thischeck.is (':checked'))
{
   //show popup
   $find('YourModalPopupExtender').show();

}
});
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900