ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: necatiozbek on July 24, 2024, 02:27:57 pm
-
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
}
},
-
font-size can also be set with column.style and it works fine.