File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -39,4 +39,8 @@ export function onTapTest(args){
3939export function onDumpModel ( args : any ) {
4040 var label = < Label > page . getViewById ( "modelDumpLabel" ) ;
4141 label . text = JSON . stringify ( model . data . getItem ( 0 ) ) ;
42+ }
43+
44+ export function onPropertyChanged ( args : any ) {
45+ console . log ( "Property Changed" ) ;
4246}
Original file line number Diff line number Diff line change 1818 <Repeater items =" {{ data }}" >
1919 <Repeater .itemTemplate>
2020 <StackLayout class =" listitem" >
21- <CheckBox : CheckBox text =" {{ text }}" checked =" {{ checked }}" fillColor =" {{ color }}" tintColor =" {{ color }}" />
21+ <CheckBox : CheckBox text =" {{ text }}" checked =" {{ checked }}" fillColor =" {{ color }}" tintColor =" {{ color }}" propertyChanged = " onPropertyChanged " />
2222 </StackLayout >
2323 </Repeater .itemTemplate>
2424 </Repeater >
You can’t perform that action at this time.
0 commit comments