I want do display a modal window with a "please wait" message and animated gif while doing some rpc requests.
I can get the dialog to appear but the gif image appears in the window header and not in the body. Can somebody please tell me what I am doing wrong or if there is an easier way to do it?
Thanks
I can get the dialog to appear but the gif image appears in the window header and not in the body. Can somebody please tell me what I am doing wrong or if there is an easier way to do it?
Code:
isc.showPrompt("Searching...", {title: "Please Wait", items: isc.Canvas.create({contents: "<img src='img/busy.gif'>"})});
Comment