I want to make my jTable expandable while floating/overlay when dragging it using ComponentResizer class. I'm using ComponentResizer
class from Rob Camick.
Currently as below after dragging the table:
I tried change my layout to null but the result still same. In my code, I just added to call the ComponentResizer class:
ComponentResizer cr = new ComponentResizer();
cr.setSnapSize(new Dimension(10, 10));
cr.registerComponent(jScrollPane2);
I expect the dragging table will float and overlay the components below it.