We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b82803 commit 4924171Copy full SHA for 4924171
demo/app/main-page.ts
@@ -42,9 +42,9 @@ export function onRepeaterItemTap(args: any){
42
let data = new Array<DataItem>();
43
console.log(model.data.length);
44
45
- model.data.forEach(x => function(value: DataItem, index: number, array: Array<DataItem>){
46
- console.log(value);
47
- });
+ for(var i=0; i < model.data.length; i++){
+ data.push(model.data.getItem(i));
+ }
48
49
label.text = JSON.stringify(data);
50
}
0 commit comments