Hi
I want to know if there is a feature which can show waiting prompt message on client side events. For Example when the user clicks a button on which some components are hidden/shown the used should be show a prompt saying "Wait...". I tried some thing like this:
But doing the above did not show the prompt at all. Can anyone please tell me the reason behind this and also how to achieve this.
Thanks
Kiran
I want to know if there is a feature which can show waiting prompt message on client side events. For Example when the user clicks a button on which some components are hidden/shown the used should be show a prompt saying "Wait...". I tried some thing like this:
Code:
button.addClickHandler{ new ClickHandler { public void onClick { SC.showPrompt("Wait......."); ...................................... .................................... SC.clearPrompt(); } } }
Thanks
Kiran
Comment