Hi I have some problem in project. I'm showing some list in the table view row. By clicking the list it has to show select image for selected id. And I wrote code for selected id and my problem is when i'm selected the the select image is showing in IOS and not showing in the Andriod. Can any check code and guide me where I did mistake
~~~
var cellWidth = 192; var cellHeight = 192; var xSpacer = 10; var ySpacer = 10; var xGrid = 3;
var tableData = [];
var colorSet = [
{id: 'array_key', image: '/images/p2.jpg', datum: ' Dec 2012'},
{ image: '/images/p3.jpg',id:2, datum: ' Jun 2012' },
{ image: '/images/cafe.jpg', datum: ' Feb 2013' },
];
var colorSet2 = [
{ image: '/images/cafe.jpg', datum: ' Dec 2012'},
{ image: '/images/p2.jpg',id:2, datum: ' Jun 2012' },
{ image: '/images/cafe.jpg', datum: ' Feb 2013' },
];
var arraytest = [
"key1","key2"
];
var keyarray = [];
var keyarray2 = [];
colorSet.sort(comp);
Ti.API.info('friends sorted Array ='+arraytest.length);
keyarray=[
{key1:colorSet},
{key2:colorSet2}
];
var yGrid = keyarray.length;
var yGridkey2 = keyarray[1].key2.length;
//custom sort function
function comp(a, b) {
// change the > condition to < for reverse the sort.
return new Date(a.datum).getTime() < new Date(b.datum).getTime();
}
var colorSetIndex = 0; var cellIndex = 0;
var tableview = Ti.UI.createTableView({ //data:tableData }); ///-------// var globaltest = " "; var globaltest2 = " ";
for (var i=0; i < yGrid; i++) {
for(key in keyarray[i]){
globaltest = keyarray[i][key].length;
}
Ti.API.info('globaltest' +globaltest);
var keynamevar = arraytest[i];
var yGridkey = globaltest;
var row0 = Ti.UI.createTableViewRow({height:"100",backgroundColor:"#EEEEEE"});
var labelTitle = Ti.UI.createLabel({
text:"JAN 2013",
left:'40%',
color:'black' ,
font :{fontSize: Alloy.CFG.font2,fontWeight: 'bold'},
});
row0.add(labelTitle);
tableview.appendRow(row0);
var yGridkeyarray = keyarray[i][key];
// Ti.API.info("yGridkeyarray:" + JSON.stringify(yGridkeyarray));
var testvar = keyarray.yGridkeyarray;
Ti.API.info("testvar:"+ yGridkeyarray);
var dividegridkey = yGridkey/3;
var modegridkey = yGridkey%3;
Ti.API.info("dividegridkey:"+ dividegridkey);
Ti.API.info("modegridkey:"+ modegridkey);
if(modegridkey > 0){
dividegridkey = dividegridkey+1;
}
for(var k= 0; k<dividegridkey; k++){
var row1= Ti.UI.createTableViewRow({
//height:80,
backgroundColor:"#FFFFFF",
className: "grid",
layout: "horizontal",
height: cellHeight+(2*ySpacer),
//selectedBackgroundColor:"red"
});
for(var j = 0; j<3; j++){
var cellimgwidth = j*cellWidth + parseInt(ySpacer);
var thisView = Ti.UI.createView({
//objName:"grid-view",
// objIndex:cellIndex.toString(),
// backgroundColor: "white",
left: 5,
height: cellHeight,
width: cellWidth
});
var icon = Ti.UI.createButton({
left: 5,
height: cellHeight,
backgroundImage: yGridkeyarray[(k*3+j)].image,
top: 0,
width: cellWidth,
objName:"grid-view",
objIndex:cellIndex.toString(),
value: false
});
//Attach some simple on/off actions
var labelView = Titanium.UI.createView({
visible:false,
width : cellHeight,
height : cellWidth,
//backgroundColor : '#000',
backgroundImage:"/images/transparent.png",
// opacity : 0.8
});
var select_icon = Ti.UI.createImageView({
left: 0,
height: 33,
backgroundImage:"/images/event_select.png",
top: 0,
width: 36,
});
labelView.add(select_icon);
icon.on = function() {
this.value = true;
};
icon.off = function() {
this.value = false;
};
icon.add(labelView);
thisView.add(icon);
row1.add(thisView);
cellIndex++;
colorSetIndex++;
}
tableview.appendRow(row1);
}
//tableview.data= tableData;
}; //-------//
tableview.addEventListener("click", function(e){ if(e.source.objName){ Ti.API.info("---> " + e.source.objName+e.source.objIndex + " was clicked!"); Ti.API.info("---> " + e.source.height + " was clicked!");
// checkbox click
if(false == e.source.value) {
e.source.on();
e.source.children[0].setVisible(true);
} else {
e.source.off();
e.source.children[0].setVisible(false);
Ti.API.info("e.index"+e.source.value);
}
}
});
var win = Ti.UI.createWindow({ backgroundColor:"black", navBarHidden:false, title:"Main Window" }); $.win.add(tableview);
$.win.open();