Hello,
I'm working with the jqGrid and was experimenting with the drag and drop functionality that's built into the plugin. I'm using the most recent versions of jquery, jquery ui, jqgrid, etc.
I kind of have 2 problems, but I'll start with the more complicated one because if that one doesn't get panned out then the drag and drop feature isn't a viable option.
The bigger problem is that the drag and drop simply does not work in Chrome, at all. I can drag from a jqGrid, but dropping onto another grid does not work. It simply leaves the row in the 'dropped' location, never inserting into the grid and just floats there until the page is refreshed.
Just loading 2 basic grid's with data through an ajax call, and here's the two lines to implement the drag and drop functionality.
$("#teamRosterBench").jqGrid('gridDnD', { connectWith: '#teamRosterStarters' });
$("#teamRosterStarters").jqGrid('gridDnD', {connectWith: '#teamRosterBench'});
This problem persists both ways in chrome. There seems to be something wrong with it in Firefox as well, but I can at least successfully drag AND drop rows in firefox.
Please advise.