I have a 3X3 grid pane. I need to move nodes between cells or remove some nodes at, say, x,y
position. In doing so I want the remaining nodes to get rearranged accordingly. Like if I remove the first node, the node at cell 0,1
should occupy 0,0
and so on..
I am doing this by DnD. Is there any way to auto arrange the cell nodes, rather than using custom logic on the drop event?