Updated
This commit is contained in:
50
master/examples/text-input-scene.html
Normal file
50
master/examples/text-input-scene.html
Normal file
@@ -0,0 +1,50 @@
|
||||
<h1 dojoType="dojox.mobile.Heading">Text Inputs</h1>
|
||||
|
||||
<div>
|
||||
Simple Text Input
|
||||
<input dojoType="dojox.mobile.TextBox" value="Joe Bloggs" id="simpleTextInput">
|
||||
</div>
|
||||
<div>
|
||||
Uppercase Text Input
|
||||
<input dojoType="dojox.mobile.TextBox"
|
||||
value="Joe Bloggs"
|
||||
uppercase="true"
|
||||
id="upperCaseTextInput">
|
||||
</div>
|
||||
<div>
|
||||
Lowercase Text Input
|
||||
<input dojoType="dojox.mobile.TextBox"
|
||||
value="Joe Bloggs"
|
||||
lowercase="true"
|
||||
id="lowerCaseTextInput">
|
||||
</div>
|
||||
<div>
|
||||
Propercase Text Input
|
||||
<input dojoType="dojox.mobile.TextBox"
|
||||
value="Joe Bloggs"
|
||||
propercase="true"
|
||||
id="properCaseTextInput">
|
||||
</div>
|
||||
<div>
|
||||
Max Length = 6 Text Input
|
||||
<input dojoType="dojox.mobile.TextBox"
|
||||
value="Joe Bloggs"
|
||||
maxLength="6"
|
||||
id="maxLengthTextInput">
|
||||
</div>
|
||||
<div>
|
||||
PlaceHolder Text Input
|
||||
<input dojoType="dojox.mobile.TextBox"
|
||||
value=""
|
||||
placeHolder="Enter Name"
|
||||
maxLength="6"
|
||||
id="placeholderTextInput">
|
||||
</div>
|
||||
<div>
|
||||
Select On Click Text Input
|
||||
<input dojoType="dojox.mobile.TextBox"
|
||||
value="Joe Bloggs"
|
||||
selectOnClick="true"
|
||||
id="selectOnClickTextInput">
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user