File tree Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<Page >
3
- <SearchBar width =" 250" verticalAlignemnt =" center" horizontalAlignemnt =" center" />
3
+ <SearchBar width =" 250" verticalAlignment =" center" horizontalAlignment =" center" />
4
4
</Page >
Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ export class MainPageViewModel extends TestPageMainViewModel {
31
31
set exampleName ( value : string ) {
32
32
if ( this . _exampleName !== value ) {
33
33
this . _exampleName = value ;
34
- this . notifyPropertyChange ( "exampleName" , value ) ;
35
34
this . filterListView ( value ) ;
36
35
}
37
36
}
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ export class TestExample extends Observable {
17
17
set name ( value : string ) {
18
18
if ( this . _name !== value ) {
19
19
this . _name = value ;
20
- this . notifyPropertyChange ( 'name' , value )
21
20
}
22
21
}
23
22
@@ -28,7 +27,6 @@ export class TestExample extends Observable {
28
27
set path ( value : string ) {
29
28
if ( this . _path !== value ) {
30
29
this . _path = value ;
31
- this . notifyPropertyChange ( 'path' , value )
32
30
}
33
31
}
34
32
}
Original file line number Diff line number Diff line change 3
3
<ActionBar title =" maxLength" />
4
4
</Page .actionBar>
5
5
<StackLayout >
6
- <TextField id =" maxLenghtFromCodeBehindWithText" hint =" max lenght and text from code behind" maxLength =" 3" />
7
- <TextField id =" maxLenghtFromCodeBehind" hint =" set only max length from code behind" />
8
- <TextField id =" inXml" text =" in xml" hint =" in xml" maxLength =" 3" />
9
- <TextField id =" useInput" hint =" user input" maxLength =" 3" />
10
- <TextField id =" useInput" hint =" secured" maxLength =" 3" secure =" true" />
6
+ <TextField autocorrect = " false " id =" maxLenghtFromCodeBehindWithText" hint =" max lenght and text from code behind" maxLength =" 3" />
7
+ <TextField autocorrect = " false " id =" maxLenghtFromCodeBehind" hint =" set only max length from code behind" />
8
+ <TextField autocorrect = " false " id =" inXml" text =" in xml" hint =" in xml" maxLength =" 3" />
9
+ <TextField autocorrect = " false " id =" useInput" hint =" user input" maxLength =" 3" />
10
+ <TextField autocorrect = " false " id =" useInput" hint =" secured" maxLength =" 3" secure =" true" />
11
11
<Button tap =" setText" text =" Revert to initial state" />
12
12
</StackLayout >
13
13
</Page >
You can’t perform that action at this time.
0 commit comments