The dialog buttons do not showing the texts: Submit, Cancel.
$(function () {
$("#dialog").dialog({
resizable: false,
height: 350,width: 500,
modal: true,
buttons: {
Submit: {
text: "Submit",
"id": "submitBtn",
click: function () {
$(this).dialog("close");
$("#SubmitBtn").click();
}
},
Cancel: {
text: "Cancel",
"id": "cancelBtn",
click: function () {
$(this).dialog("close");
}
}
}
});
});