Created
July 6, 2012 03:20
-
-
Save jbristowe/3057878 to your computer and use it in GitHub Desktop.
HTML5 Forms Support in Kendo UI Mobile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="..." data-role="view" data-title="..."> | |
<ul data-role="listview" data-style="inset"> | |
<li> | |
<!-- search --> | |
<input type="search" value="search" /> | |
Search: | |
</li> | |
<li> | |
<!-- url --> | |
<input type="url" value="http://www.kendoui.com" /> | |
URL: | |
</li> | |
<li> | |
<!-- email --> | |
<input type="email" value="[email protected]" /> | |
Email: | |
</li> | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment