ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: gmswsd on April 05, 2020, 09:52:28 pm

Title: How do you Bold the Header?
Post by: gmswsd on April 05, 2020, 09:52:28 pm
Please provide an example of how to bold the Header

Thanks
Glenn
Title: Re: How do you Bold the Header?
Post by: paramvir on April 06, 2020, 09:48:20 am
It can be done with either a css rule or using column.styleHead property in js.

Method 1) with css

Code: [Select]
.pq-grid-col{
font-weight: bold;
}

Method 2) with js

Code: [Select]
columnTemplate: {
styleHead: {
'font-weight': 'bold'
}
}
Title: Re: How do you Bold the Header?
Post by: gmswsd on April 07, 2020, 12:02:29 am
Thanks, that worked perfectly