Files
NativeScript/apps/app/ui-tests-app/text-field/max-length.xml
SvetoslavTsenov 97b1cd9060 Tsenov/searchbar (#4328)
* Searchbar tests

* Update search bar test page

* Fix path to events test pages

* Update text-view test pages
2017-06-07 10:25:16 +03:00

13 lines
660 B
XML

<Page loaded="pageLoaded">
<Page.actionBar>
<ActionBar title="maxLength" />
</Page.actionBar>
<StackLayout>
<TextField id="maxLenghtFromCodeBehindWithText" hint="max lenght and text from code behind" maxLength="3" />
<TextField id="maxLenghtFromCodeBehind" hint="set only max length from code behind" />
<TextField id="inXml" text="in xml" hint="in xml" maxLength="3" />
<TextField id="useInput" hint="user input" maxLength="3" />
<TextField id="useInput" hint="secured" maxLength="3" secure="true" />
<Button tap="setText" text="Revert to initial state" />
</StackLayout>
</Page>