[codenameone-discussions] Re: How to dispose a Form when spawned by dialog

2020-01-19 Thread Mark Bolduc
Thanks. I am comfortable witha modal Dialog being more than a confirmation mechinism. For now, I will stay away from the interactive dialog for the very reasons stated in the document you provided. Thanks for the referance. Regards. On Saturday, January 18, 2020 at 12:46:06 AM UTC-5, Shai

[codenameone-discussions] Re: How to dispose a Form when spawned by dialog

2020-01-17 Thread Shai Almog
See https://www.codenameone.com/blog/picking-dialog-type.html -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[codenameone-discussions] Re: How to dispose a Form when spawned by dialog

2020-01-17 Thread Mark Bolduc
Thanks, Dialogs work great for my application as (for example) editing inventory in a form can spawn multiple dialogs. This works especially well as when the Dialog is disposed, I am returned to the Form w/o having the overhead of reloading that form. briefly, what is the the programaticall

[codenameone-discussions] Re: How to dispose a Form when spawned by dialog

2020-01-14 Thread Shai Almog
You'll need to show a new dialog instance on this new form. Forms aren't disposable. Generally I'd advise re-thinking the UX here. Dialogs are meant to be small interactions for OK/Cancel sort of stuff. If you have more functionality there you should probably put it in a Form. -- You received