dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
51 lines (48 loc) • 1.09 kB
HTML
<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>