Reputation: 59
Below is my Jquery Dialog. When Dialog pop up, the tile bar is showing 100% as shown in image.
How do I put space after the "X" (closing button) in the title bar?
$("#imgForwardProposal").click(function (e) {
$("#divSearch").dialog({
open: function () {
$(this).closest(".ui-dialog")
.find(".ui-dialog-titlebar-close")
.removeClass("ui-dialog-titlebar-close");
},
title: "Search Employee",
show: "scale",
modal: true,
width: '55%',
height: 500
});
});
Upvotes: 1
Views: 149