Smartclient: How To Use Modal Window
I want to develop an application in SmartClient using javascript. In that application, it takes inputs like price range and category. On form submit, without reloading the page it
Solution 1:
They have attached JavaScript associated with the code. Two basic properties of Window are applied to get a Window having Modality:
- IsModal = true;
- ShowModalMask = true.
Solution 2:
That's javascript(I guess JSNI Code impl) based implementation. For java code implementation of similar example refer: http://www.smartclient.com/smartgwt/showcase/#layout_windows_modality. You can achieve the modality by simply setting setIsModal(Boolean) of the corresponding dialog box to true.
Post a Comment for "Smartclient: How To Use Modal Window"