ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: gmswsd on April 05, 2020, 09:52:28 pm
-
Please provide an example of how to bold the Header
Thanks
Glenn
-
It can be done with either a css rule or using column.styleHead property in js.
Method 1) with css
.pq-grid-col{
font-weight: bold;
}
Method 2) with js
columnTemplate: {
styleHead: {
'font-weight': 'bold'
}
}
-
Thanks, that worked perfectly