Hi All
I have a problem with the jquery-ui dialog in ASP.NET form,
$("#pnlReceiverDialog").dialog({
autoOpen:false,
modal: true,
height:220,
width:500,
resizable :false,
overlay: { opacity: 0.5,background: "black" },
buttons: {
"Cancel": function() {
$(this).dialog("close");
},
"Ok": function() {
__doPostBack('ctl00$phContent$ctl00$LetterLocation$pupNewReceiver','')
}
}
});
pnlReceiverDialog contains an asp.net TextBox.
When I click in the OK button, the form posts back but the textbox doesn't have value.
Thanks and sorry for bad English