Hi soniaalves,
I tried reproducing this. I did get it if I showed the dialog window on the server. But if I used client script to show it, there was no problem.
var dialogWindow = $find("webdialogwindow1");
function showIt()
{
dialogWindow.set_windowState($IG.DialogWindowState.Normal);
}
<input type="button" id="clientShow" value="client Show" onclick="showIt()" />
regards,
David Young
Hi,Thanks for answering me.
I tried that piece of code and I got a javascript error: the WebDialogWindow is null. So I tried this:
function
showIt() {
var dialogWindow = $find('<%= WebDialogWindow1.ClientID %>');
);
So, when I click the button, function showIt() is called and it shows me the webDialogWindow, but the webupload control still does't show. It has the same behaviour, calling by the server side or the client side.
Can somebody please tell me why is this not working and what can I do to solve this, on the server side?
Thank you