Click here to Skip to main content
15,901,373 members

Comments by pratipgd (Top 2 by date)

pratipgd 19-Nov-12 5:11am View    
You can also suggest on how i can use improve the "Close" button, so that it closes without the page reloading but the page remains active.

Tried :
buttons: {
"Close": function () {
e.preventDefault();
$(".ui-dialog").remove();
$(".ui-widget-overlay").remove();
}
AND
buttons: {
"Close": function () {
e.preventDefault();
$("#modalDialog").dialog('close');
}
}

But they dont serve my purpose
pratipgd 19-Nov-12 3:14am View    
Deleted
You can also suggest on how i can use improve the "Close" button, so that it closes without the page reloading but the page remains active.

Tried :
buttons: {
"Close": function () {
e.preventDefault();
$(".ui-dialog").remove();
$(".ui-widget-overlay").remove();
}