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
485
Change column header style - Client side sorting
posted

Hi,

I am using UltraWebGrid Version 7.3.

I have used client side sorting for this grid. Now I have to change the sorted column header style through javascript.

I am using following javascript code but it does not work -

function ServerGrid_SortColumn(grdID,columnID)

{

//Column Object

var columnObject = igtbl_getColumnById(columnID);

if(columnObject)

{

columnObject.HeaderClass =
"ServerGrid_clsTDSortColHeader";}

}

}

Any Idea ?

Thanks..