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
175
multi column javascript sort
posted

Hi,  I've trying to do a multi colomn sort with a unltradatagrid on the clientside.

Currently i'm using this javascript below, but this is not including the column that was clicked in the sort

 function SortAll() {
       
            var grid = igtbl_getGridById('UltraGridDepartures');
            grid.addSortColumn("UltraGridDepartures_c_0_1", false);
            grid.sort();

}