When i click on a button in the repeater, i wanna display an ajax modal popup using jquery. I am trying to do that, but its not getting displayed.
How to solve this issue? Any suggestions???
When i click on a button in the repeater, i wanna display an ajax modal popup using jquery. I am trying to do that, but its not getting displayed.
How to solve this issue? Any suggestions???
You need to initialize the dialog.
$(function() {
$('#panel_clientid').dialog({
minWidth: 400,
minHeight: 200,
width: 400,
height: 200,
title: 'My title',
autoOpen: false,
show: 'blind',
hide: 'explode'
});
};