ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: necatiozbek on July 24, 2024, 02:27:57 pm

Title: Style can be set in ColModel. But why can't the font size be adjusted?
Post 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
                             }
                        },
Title: Re: Style can be set in ColModel. But why can't the font size be adjusted?
Post by: paramvir on July 24, 2024, 08:48:57 pm
font-size can also be set with column.style and it works fine.