Hi Everybody
I am getting some problem to disable close button in JQuery Diagle.
My code is like bellow.
$(document).ready(function () {
$("#dialog").dialog({
modal: true,
width:800
});
});
Thanx in Advance
Hi Everybody
I am getting some problem to disable close button in JQuery Diagle.
My code is like bellow.
$(document).ready(function () {
$("#dialog").dialog({
modal: true,
width:800
});
});
Thanx in Advance
Try this It ll work..
$(document).ready(function () {
$("#dialog").dialog({
open: function(event, ui) { $(".ui-dialog-titlebar-close").hide(); },
modal: true,
width:800
});
});