2014年5月27日 星期二

dialog property properties

function xxfnOpenNormalDialog() {
if (hadEdit==1){
    $("#dialog-confirm").html("Are you sure ?");
    $("#dialog-confirm").dialog({
modal: true,
minHeight: 200,
minWidth: 300,
dialogClass: "no-close",
center: true,
my: "center",
at: "center",
of: window,
autoOpen:true,
resizable: false,
modal: true,
title: "Exit",
dialogClass: 'dlgfixed',
position: ['center','middle'],
      buttons: {
            "Yes": function () {
                $(this).dialog('close');
                callback(true);
            },
                "No": function () {
                $(this).dialog('close');
                callback(false);
            }
        }
    }).css("font-size", "15px") ;
}else{
parent.exitMoralBox();
}
}

沒有留言:

張貼留言