As there's still no manual for migration from RC-4 to RC-X its not easy to create new projects or migrate the old ones. Does anyone know how to show a PopupView to edit something and to close it again in the popup class after finished activities or on cancel?
different other conceptional changes like grid, item.writebean.... I already solved. But for Popup cant find similar solution.
thanks in advance for every hint.
What I would do is create a new GUI-Element that inherits from Dialog. This view can then be designed with the GUI-Builder. To then show the dialog all you have to do is to create a new instance and then call the open() method on it.
Example: new EditPopup(myBean).open(); <- EditPopup inherits from Dialog
Closing the dialog is as simple as calling this.close();
Hope this helps :)