Three grids A, B C
I want to drag from A to B and from A to C
In grid creation for B, I have
$dragdrop = <<< DRAG
jQuery(‘A’).jqGrid(‘gridDnD’,{
connectWith:’B’
});
DRAG;
$grid->setJSCode($dragdrop);
In grid creation for C, I have
$dragdropC = <<< DRAG
jQuery(‘A’).jqGrid(‘gridDnD’,{
connectWith:’C’
});
DRAG;
$grid->setJSCode($dragdropC);
It only works to the last loaded. Is there a way to get it to drop onto either?
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top