I would like to implement dragType for ListGrid/TreeGrid but I cannot find any examples where records are being used. Is it possible? If so, where do I put the dragType property? For listgrid it is quite simple since there is only one type but for the TreeGrid, in our case, different nodes can have different dropTypes.
In theory I would like to be able for listgrid to set dropType and dragType on the control itself. For TreeGrid, I would like to be able to set dropType and dragType as part of the tree data.
If you don't support either out of box, how do I override the default implementation? willAcceptDrop does not seem to have any parameters according to the documentation. I want to be able to show the user where they can/cannot drop while the mouse is still down.
In theory I would like to be able for listgrid to set dropType and dragType on the control itself. For TreeGrid, I would like to be able to set dropType and dragType as part of the tree data.
If you don't support either out of box, how do I override the default implementation? willAcceptDrop does not seem to have any parameters according to the documentation. I want to be able to show the user where they can/cannot drop while the mouse is still down.
Comment