Hello,
I'm loving drag and drop and hope to implement it on a lot of places.
But what is the general approach in implementing a 'remove' of a copied record by drag and drop?
Case:
Tree1
Grid1
Grid2
Grid1 & Grid2 accept dropped records from Tree1 with DragDataAction.NONE
Now I want to remove records from the grids. A simple "drag out and release mouse button and record is out of the grid" is what I need. The grid is already too small to have another column with a delete button, and I don't want to use right-click as in the "Drag create showcase sample".
To make it even more clear and staying with the above showcase sample: how can I remove the small cubes from their box and delete them, by dragging? Is the only possible approach making everything around the box accept drags and don't do anything with the dragged record?
I've thought about simply dragging records back to Tree1 to remove them from the grids, but since the dragged-to-grid record stays in Tree1, I think it's confusing for users to have the Tree1 as delete bucket.
thanks
I'm loving drag and drop and hope to implement it on a lot of places.
But what is the general approach in implementing a 'remove' of a copied record by drag and drop?
Case:
Tree1
Grid1
Grid2
Grid1 & Grid2 accept dropped records from Tree1 with DragDataAction.NONE
Now I want to remove records from the grids. A simple "drag out and release mouse button and record is out of the grid" is what I need. The grid is already too small to have another column with a delete button, and I don't want to use right-click as in the "Drag create showcase sample".
To make it even more clear and staying with the above showcase sample: how can I remove the small cubes from their box and delete them, by dragging? Is the only possible approach making everything around the box accept drags and don't do anything with the dragged record?
I've thought about simply dragging records back to Tree1 to remove them from the grids, but since the dragged-to-grid record stays in Tree1, I think it's confusing for users to have the Tree1 as delete bucket.
thanks
Comment