checbox Template value based on CellText for array ?
Hi
I am trying to avoid the use of Grid.setCellValue( function(col,row){.......
So the checked value should be stored in same or next CellText
I also need the checked property-value to be empty or 1, or 0 - 1
How to accomplish this scenario ?
tried this way but I guess I need to construct a custom template for this task
I need Help ! ;)
I am trying to avoid the use of Grid.setCellValue( function(col,row){.......
So the checked value should be stored in same or next CellText
I also need the checked property-value to be empty or 1, or 0 - 1
How to accomplish this scenario ?
tried this way but I guess I need to construct a custom template for this task
I need Help ! ;)
var chkTemplate = new My.Templates.Checkbox;
chkTemplate.setCheckedProperty('true', '1');
chkTemplate.setCheckedProperty('false', '');
obj.setColumnTemplate(chkTemplate,0);
Carlos
December 26,