Difference between revisions of "AlertDialog"

From GiderosMobile
(Created page with "__NOTOC__ '''Supported platforms:''' <br/> '''Available since:''' Gideros 2012.8<br/> === Description === <br /> The `AlertDialog` class is used to display native alert dialog...")
 
m (Text replacement - "</source" to "</syntaxhighlight")
 
(36 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''Supported platforms:''' <br/>
+
<!-- GIDEROSOBJ:AlertDialog -->
 +
'''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]][[File:Platform html5.png]][[File:Platform winrt.png]][[File:Platform win32.png]]<br/>
 
'''Available since:''' Gideros 2012.8<br/>
 
'''Available since:''' Gideros 2012.8<br/>
 +
'''Inherits from:''' [[Object]]<br/>
 +
 
=== Description ===
 
=== Description ===
<br />
+
The AlertDialog class is used to display native alert dialogs with one, two or three buttons.
The `AlertDialog` class is used to display native alert dialogs with one, two or three buttons. Cancel button<br />
+
 
is mandatory but other two buttons are optional. When the user presses any button in the alert dialog,<br />
+
Cancel button is mandatory but other two buttons are optional.
it&#039;s dismissed and `Event.COMPLETE` event is dispatched.<br />
+
 
<br />
+
When the user presses any button in the alert dialog, it's dismissed and '''[[AlertDialog_Event.COMPLETE]]''' event is dispatched.
 +
 
 +
If alert dialog is dismissed by any other means (pressing back button on Android or pressing close button on desktop), it behaves as cancel button pressed.
 +
 
 +
=== Example ===
 +
<syntaxhighlight lang="lua">
 +
local alertDialog = AlertDialog.new("This is my title", "And my message", "Cancel", "Yes", "No")
 +
local function onComplete(e)
 +
print(e.buttonIndex, e.buttonText)
 +
end
 +
alertDialog:addEventListener(Event.COMPLETE, onComplete)
 +
alertDialog:show()
 +
</syntaxhighlight>
 +
 
 +
=== See also ===
 +
'''[[TextInputDialog]]'''
  
If alert dialog is dismissed by any other means (by pressing back button on Android or by pressing close button on desktop), it behaves as cancel button is pressed.<br />
 
<br />
 
 
{|-
 
{|-
| style="width: 50%;"|
+
| style="width: 50%; vertical-align:top;"|
 
=== Methods ===
 
=== Methods ===
| style="width: 50%;"|
+
[[AlertDialog.new]] ''creates a new AlertDialog object''<br/><!--GIDEROSMTD:AlertDialog.new(title,message,cancelButton,button1,button2) creates a new AlertDialog object-->
 +
 
 +
[[AlertDialog:hide]] ''hides the alert dialog''<br/><!--GIDEROSMTD:AlertDialog:hide() hides the alert dialog-->
 +
[[AlertDialog:show]] ''shows the alert dialog''<br/><!--GIDEROSMTD:AlertDialog:show() shows the alert dialog-->
 +
 
 +
| style="width: 50%; vertical-align:top;"|
 
=== Events ===
 
=== Events ===
 +
<!--[[Event.COMPLETE]]<br/>-->
 +
[[AlertDialog_Event.COMPLETE]]<br/><!--GIDEROSEVT:Event.COMPLETE complete-->
 
=== Constants ===
 
=== Constants ===
 
|}
 
|}
 +
 +
{{GIDEROS IMPORTANT LINKS}}

Latest revision as of 17:59, 12 July 2023

Supported platforms: Platform android.pngPlatform ios.pngPlatform mac.pngPlatform pc.pngPlatform html5.pngPlatform winrt.pngPlatform win32.png
Available since: Gideros 2012.8
Inherits from: Object

Description

The AlertDialog class is used to display native alert dialogs with one, two or three buttons.

Cancel button is mandatory but other two buttons are optional.

When the user presses any button in the alert dialog, it's dismissed and AlertDialog_Event.COMPLETE event is dispatched.

If alert dialog is dismissed by any other means (pressing back button on Android or pressing close button on desktop), it behaves as cancel button pressed.

Example

local alertDialog = AlertDialog.new("This is my title", "And my message", "Cancel", "Yes", "No")
local function onComplete(e)
	print(e.buttonIndex, e.buttonText)
end
alertDialog:addEventListener(Event.COMPLETE, onComplete)
alertDialog:show()

See also

TextInputDialog

Methods

AlertDialog.new creates a new AlertDialog object

AlertDialog:hide hides the alert dialog
AlertDialog:show shows the alert dialog

Events

AlertDialog_Event.COMPLETE

Constants