<script type="text/javascript">
function ShowPopup() {
$("#dialog-modal").dialog({
title: "Change Default Password For Client",
height: 230,
width: 400,
appendTo: "form",
buttons: {
Close: function () {
$(this).dialog('close');
}
},
modal: true
});
};
</script>
//Use appendTo: "form"
function ShowPopup() {
$("#dialog-modal").dialog({
title: "Change Default Password For Client",
height: 230,
width: 400,
appendTo: "form",
buttons: {
Close: function () {
$(this).dialog('close');
}
},
modal: true
});
};
</script>
//Use appendTo: "form"
No comments:
Post a Comment