Question : how to disable the Close button on jquery Dialog

i am using the below jquery function


function ShowAll(divToPopupID, titleID) {

    if ($(divToPopupID).attr('ReadOnly') == true) {
        $("#divResult").find("textarea").attr("readonly", "readonly");
        //button = $("#divResult").find("button:contains('Close')");
        //button.unbind();
        //button.addClass('ui-state-disabled');

    }
 
        $("#divResult").find("textarea").text($(divToPopupID).html());
        $("#divResult").addClass("ShowPanel");        
        $("#divResult").dialog({
            width: 800,
            autoOpen: false,
            modal: true,
            title: $(titleID).text(),
            closeOnEscape: false,
            buttons:
            {
                "Cancel": function() {
                    $(this).dialog("close");
                },
                "Close": function() {
                    $(divToPopupID).html($("#divResult").find("textarea").text());
                    setTabDirty();//This is for invoking the save message ,if the user moves to another tab without saving data in current tab.
                    $(this).dialog("close");
                    $("#divResult").removeClass("HiddenPanel");
                }
            }
        });
        $("#divResult").dialog("open");        
    }

When ever i am calling the  $("#divResult").find("textarea").attr("readonly", "readonly"); line i need to diable the 'Close ' button or hide .so that user can see only the cancle button.

Answer : how to disable the Close button on jquery Dialog

I think this make the button hidden
$('#CloseButtonID').hide();

Random Solutions  
 
programming4us programming4us