Copy row from one table to another
Hi,
I've made a component which allows you to copy rows from one JTable to another. I have one small problem though .. you can switch the columns in different order by dragging the header. Since I'm copying one column at the time (col1, col2, col3 to col1, col2, col3) a problem exists when you switch the column position (col1, col3, col2 to col1, col2, col3) . Is there any way to copy one entire row (in the correct position) from one JTable to the other ?

