Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
145
Webgrid header row style
posted

I have a hierarchical webgrid that allows paging and sorting on both bands.

How to change the black arrwo that apeears when  column is clicked to sort?

How to underline only few column headers in a particular band?

  • 280
    posted

    you can underline column headers with with the css class for column header

    <HeaderStyle CssClass="dataGridDataLink" />

    .dataGridDataLink

    {
    text-decoration: underline;

    }

     

    Regarding the sort indicator, I also require the solution for it.