Reputation: 119
I have a list of items in JList what I want is to drag one item at a time from JList and dropped on particular column the item should be added only that column.
Upvotes: 1
Views: 686
Reputation: 109813
AFAIK is possible to use DND in JTable only for Rows
not Columns
, because JTable is vertically designed
example about DND support for JTable
Upvotes: 2