Calling sort on slickgrid

后端 未结 10 893
我寻月下人不归
我寻月下人不归 2021-02-04 18:40

In the slickgrid I\'m able to set the sort column and it\'s sort direction using the grid.SetSortColumn(colName,true/false). This only sets the sorting glyph but do

10条回答
  •  -上瘾入骨i
    2021-02-04 19:08

    You can trigger click event on the column header...which does sorting

    I fixed the issue like this...

    $('.slick-header-columns').children().eq(0).trigger('click'); // for first column
    

提交回复
热议问题