I have a basic template
var myTemplate = {
bindId: 'parentview',
properties: {height: 0,
selectedBackgroundColor:$Class.MainBackground,
backgroundColor:$Class.MainBackground
},
childTemplates: [
{
type: 'Ti.UI.View', // Use an image view for the image
bindId: 'messageview',
properties: {
selectedBackgroundColor:$Class.PrimaryColor,
right:5,
left:5,
height: 0,
borderRadius:4,
backgroundColor:$Class.White,
borderColor:$Class.DarkGrey,
borderWidth:1
},
events:{
click:editHandler
}
};
When i run the code on IOS...the editHandler is fired overtime....ON Android...nothing...and then i eventually get an out of memory warning......
Any thoughts