EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: Stefan B. on June 10, 2014, 06:59:49 AM



Title: datagrid - how can i set the global style of column header labels
Post by: Stefan B. on June 10, 2014, 06:59:49 AM
How can i set the global style of column labels. I found no CSS entry for this.
We will style the column labels in the header different from other datagrid styles.
All labels should be bold and the color blue.


Title: Re: datagrid - how can i set the global style of column header labels
Post by: stworthy on June 11, 2014, 01:24:59 AM
Please try the code below:
Code:
<style>
    .datagrid-header .datagrid-cell{
        font-weight: bold;
        color: blue;
    }
</style>


Title: Re: datagrid - how can i set the global style of column header labels
Post by: Stefan B. on June 12, 2014, 06:07:27 AM
THX this is working