Information needed related to dhtmlx Grid

We Can’t perform custom sorting based on hidden Columns number value.

Suppose, I have one column in dhtmlxgrid with header name: Sort Number(Hidden Column). Values: 1,2,3,4,5,6,7
I want to perform sorting based on this values

e.g. when I clicked on any column header All rows values are set based on (7,6,5,4,3,2,1) sequence( including hidden rows)
when I again clicked on same header the rows sequence will become(1,2,3,4,5,6,7) ( including hidden rows).

And also what to do if want to display only 5 rows from 7 rows, and hide remaining 2 rows.

And in this scenario,
When I perform sorting as described above,

How can I get sort hidden rows while sorting.

Thanks in Advance… :stuck_out_tongue: :stuck_out_tongue:

For sorting the numeric values please, try to use “int” sorting type for the required column.
For example:
mygrid.setColSorting(“int,str,na,str”);

How can I get sort hidden rows while sorting.
Unfortunately the issue is not clear.
If the rows are hidden they are not displaying in the grid so you can’t see their position.
Could you clarify the required feature.

Thanks for your support but my issue is resolved.