I am trying to add possibility to reorder grid rows and I have following grid:
I am able to move row upwards without any problems, but downwards the row is place one step too low. And in case of last position the row disappears.Code:Grid datagrid = new Grid<ModelData>(detailsStore, cm); final GridDragSource gds = new GridDragSource(datagrid); target = new GridDropTarget(datagrid); target.setFeedback(Feedback.INSERT); target.setAllowSelfAsSource(true);
Any suggestions or is this a bug in GXT?