I want to unconditionally change the font size of certain columns,
I can achieve this with the Grid.colModel[1].render function.
If this could be done in ColModel, there would be no need to write an extra render function.
var colModel= [
{
dataIndx: "FATURA",title: "Fatura"
style:{
'font-style':'italic', //> working
'font-family':'Verdana', //> working
'text-align':'center', //> working
'color':'blue', //> working
'font-size':'8px' //> not working
}
},