I am using the Slickgrid javasript library, and I have initialized my grid with the following options:
var options =
{
enableCellNavigation: true,
enableColumnReorder: true,
syncColumnCellResize: false,
asyncEditorLoading: true
};
I have the rest of my slickgrid implemented, and it is working great. The only issue I have experienced is that the column reordering is not working as it should.
I am able to drag a column header to another position, but when it hovers over where I would like to drop it, the other column headers are not shifting over as they should according to previous examples I have seen. I usually need to mess around with the column header until a space opens up.
I have not seen any documentation on column headers not being able to reorder, so I wouldn't even know where, or what might be causing these problems.
Does anybody have any similar problems such as these with Slickgrid, or any suggestions?