This file contains hidden or 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
// **************************************************************************************************************** | |
// **************************************************************************************************************** | |
// test value can be 'raw' | 'socket.io' | 'nowjs' | |
var test = 'raw', | |
// **************************************************************************************************************** | |
// **************************************************************************************************************** | |
// REMEMBER to change this with your data |
This file contains hidden or 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
function showItems(e) { | |
Ti.API.info(e.rowData.itemName); | |
} | |
var rowData=[]; | |
for(var i=1;i<=10;i++){ | |
var payload={ | |
rowId:i, | |
itemName:'Test' + i | |
} |