Hi, how can i show a WebDialogWindow but the page don't make a Postback, like a show or hide this modal with out a refresh.
Thanks for any help.
Hello Richardo,
You can show and hide the dialogwindow without postback on client side like below:
function Show() {
var dialog =$find("WebDialogWindow1");
dialog.show();
}
function hide() {
dialog.hide();
Please let me know if you have any further questions regarding this matter.
Attached sample demonstrates how you can hide and show Dialogwindow on a button click event.
hi, thanks for you help, i do this but i see a Postback, what i am doing bad??, and can i show a WebDialogEindow in the server side with out Postback(maybe with a update panel)
Best regards, Richard.