Difference between revisions of "TextInputDialog"

From GiderosMobile
(21 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''Supported platforms:''' android, ios, mac, pc<br/>
+
<languages />
'''Available since:''' Gideros 2012.8<br/>
+
<!-- GIDEROSOBJ:TextInputDialog -->
=== Description ===
+
'''<translate>Supported platforms</translate>:''' [[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/>
<br />
+
'''<translate>Available since</translate>:''' Gideros 2012.8<br/>
The `TextInputDialog` class is used to display native text input dialogs with one text edit field, one button (as cancel button) and two optional buttons. When the user presses any buttons in the alert dialog, it&#039;s dismissed and `Event.COMPLETE` event is dispatched.<br />
+
'''<translate>Inherits from</translate>:''' [[Special:MyLanguage/AlertDialog|AlertDialog]]<br/>
If text input 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 />
+
 
 
+
=== <translate>Description</translate> ===
 
+
The [[Special:MyLanguage/TextInputDialog|TextInputDialog]] class is used to display native text input dialogs with one text edit field, one button (as cancel button) and two optional buttons. When the user presses any buttons in the alert dialog, it is dismissed and [[Special:MyLanguage/Event.COMPLETE|Event.COMPLETE]] event is dispatched.
 
+
 
 
+
If text input 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.
 
+
 
 
+
=== <translate>Examples</translate> ===
 
+
<source lang="lua">
 
+
local textInputDialog = TextInputDialog.new("my title", "my message", "some text", "Cancel", "OK")
 
+
 
 
+
local function onComplete(event)
 
+
print(event.text, event.buttonIndex, event.buttonText)
 
+
end
 
+
 
 
+
textInputDialog:addEventListener(Event.COMPLETE, onComplete)
 
+
textInputDialog:show()
 
+
</source>
 
+
 
 
 
 
{|-
 
{|-
| style="width: 50%;"|
+
| style="width: 50%; vertical-align:top;"|
=== Methods ===
+
=== <translate>Methods</translate> ===
[[TextInputDialog.new]] - <br/>
+
[[Special:MyLanguage/TextInputDialog.new|TextInputDialog.new]] <br/>
[[TextInputDialog:getInputType]] - <br/>
+
<!-- GIDEROSMTD:TextInputDialog.new(title,message,text,cancelButton,button1,button2) -->
[[TextInputDialog:getText]] - <br/>
+
[[Special:MyLanguage/TextInputDialog:getInputType|TextInputDialog:getInputType]] <br/>
[[TextInputDialog:isSecureInput]] - <br/>
+
<!-- GIDEROSMTD:TextInputDialog:getInputType() -->
[[TextInputDialog:setInputType]] - <br/>
+
[[Special:MyLanguage/TextInputDialog:getText|TextInputDialog:getText]] <br/>
[[TextInputDialog:setSecureInput]] - <br/>
+
<!-- GIDEROSMTD:TextInputDialog:getText() -->
[[TextInputDialog:setText]] - <br/>
+
[[Special:MyLanguage/TextInputDialog:isSecureInput|TextInputDialog:isSecureInput]] <br/>
| style="width: 50%;"|
+
<!-- GIDEROSMTD:TextInputDialog:isSecureInput() -->
=== Events ===
+
[[Special:MyLanguage/TextInputDialog:setInputType|TextInputDialog:setInputType]] <br/>
[[Event.COMPLETE]]
+
<!-- GIDEROSMTD:TextInputDialog:setInputType(type) -->
=== Constants ===
+
[[Special:MyLanguage/TextInputDialog:setSecureInput|TextInputDialog:setSecureInput]] <br/>
[[TextInputDialog.EMAIL]]
+
<!-- GIDEROSMTD:TextInputDialog:setSecureInput(secureInput) -->
[[TextInputDialog.NUMBER]]
+
[[Special:MyLanguage/TextInputDialog:setText|TextInputDialog:setText]] <br/>
[[TextInputDialog.PHONE]]
+
<!-- GIDEROSMTD:TextInputDialog:setText(text) -->
[[TextInputDialog.TEXT]]
+
 
[[TextInputDialog.URL]]
+
| style="width: 50%; vertical-align:top;"|
 +
=== <translate>Events</translate> ===
 +
<!--[[Special:MyLanguage/Event.COMPLETE|Event.COMPLETE]]<br/>-->
 +
[[Special:MyLanguage/TextInputDialog_Event.COMPLETE|TextInputDialog_Event.COMPLETE]]<br/>
 +
<!-- GIDEROSEVT:Event.COMPLETE complete-->
 +
=== <translate>Constants</translate> ===
 +
[[Special:MyLanguage/TextInputDialog.EMAIL|TextInputDialog.EMAIL]]<br/>
 +
<!-- GIDEROSCST:TextInputDialog.EMAIL email-->
 +
[[Special:MyLanguage/TextInputDialog.NUMBER|TextInputDialog.NUMBER]]<br/>
 +
<!-- GIDEROSCST:TextInputDialog.NUMBER number-->
 +
[[Special:MyLanguage/TextInputDialog.PHONE|TextInputDialog.PHONE]]<br/>
 +
<!-- GIDEROSCST:TextInputDialog.PHONE phone-->
 +
[[Special:MyLanguage/TextInputDialog.TEXT|TextInputDialog.TEXT]]<br/>
 +
<!-- GIDEROSCST:TextInputDialog.TEXT text-->
 +
[[Special:MyLanguage/TextInputDialog.URL|TextInputDialog.URL]]<br/>
 +
<!-- GIDEROSCST:TextInputDialog.URL url-->
 
|}
 
|}
 +
 +
{{GIDEROS IMPORTANT LINKS}}

Revision as of 19:45, 11 February 2020


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

Description

The TextInputDialog class is used to display native text input dialogs with one text edit field, one button (as cancel button) and two optional buttons. When the user presses any buttons in the alert dialog, it is dismissed and Event.COMPLETE event is dispatched.

If text input 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.

Examples

local textInputDialog = TextInputDialog.new("my title", "my message", "some text", "Cancel", "OK")

local function onComplete(event)
	print(event.text, event.buttonIndex, event.buttonText)
end

textInputDialog:addEventListener(Event.COMPLETE, onComplete)
textInputDialog:show()

Methods

TextInputDialog.new
TextInputDialog:getInputType
TextInputDialog:getText
TextInputDialog:isSecureInput
TextInputDialog:setInputType
TextInputDialog:setSecureInput
TextInputDialog:setText

Events

TextInputDialog_Event.COMPLETE

Constants

TextInputDialog.EMAIL
TextInputDialog.NUMBER
TextInputDialog.PHONE
TextInputDialog.TEXT
TextInputDialog.URL