Hi
Great working with the RC release.
I wish to add a customised row height, I can see how to do that with a new ‘type’
type:‘mygrid’ etc
I also want to colour different lines and can see how to do that with the templateCSS in ‘type’,
type:
{
templateCss:function(obj){
var x = obj.id.substring(0,7);
if(x==“subhead”){
return “subhead”;
}else{
return “item”;
}
}
},
but I cannot see how to include both definitions at the same time.
this is to get around the predeclared defaults of line-height of 42 in the javascript.
Thanks