Hi,
in the WebApp examples, there is an example of how to use a ShowDialog, like
Question: Are there examples for Confirmation and Input Dialogs including handling return values from these dialogs.
in the WebApp examples, there is an example of how to use a ShowDialog, like
B4X:
Dialog.RunMethod("dialog", Array As Object(CreateMap("autoOpen": False, "modal": True)))
Dialog.SetHtml("I'am a dialog")
Dialog.RunMethod("dialog", Array As Object("option", "title", "Dialog Title"))
Dialog.RunMethod("dialog", Array As Object("open"))
Question: Are there examples for Confirmation and Input Dialogs including handling return values from these dialogs.