I try the follow:
mygrid.groupBy(1); // any column
mygrid.sortRows(5,‘str’, ‘des’); // different sort then actualy showing, same problem if User clicks header to sort…
mygrid.cells2(1,5).getValue(); // <<-- get a different Value than shown in Row #1 it shows the value from before sorting…
Is this is Bug or must I do any refresh?
This is the expected behavior.
cells2() method uses the rowId in the first parameter. so it show the value for the row with the id=“1”. It is not depending on this row position for the row indexes please, try to use the cellByIndex() method:
docs.dhtmlx.com/api__dhtmlxgrid … index.html
Thats true, thanks.
But if I do this.
- Group a Grid
- Sort the Grid
- Block Selection
Output:
console.log(mygrid._selectionArea)
If I select in all cases a block over 4 lines, I only sort the grid by different columns.
Then I get sometimes a area over 10 (TopRow: 30 BottomRow:40)
also I get sometimes (TopRow: 40 BottomRow:30)
Sometimes I get only 3 Lines
But I select 4.
The first an the last row is the same then the first and the last selected if I get them with:
mygrid.cellByIndex(RowCnt, ColCnt).getValue();