- Sep 3, 2001
- 61
- 0
- 0
I'm working on a scheduling program (using Java/Swing) that simply has several tables that I drag and drop information pulled from a database. In one table I have it set up so that the user can drag multiple data (people?s names) into a single cell (just concatenate the new name with the existing names). However, I now need the ability to drag a specific name outside the table (to delete it). Since I treat the contents of the whole cell as one big string, I'm stumped as what to do next. I'm new to Java, but have been reading about custom editors and was wondering if it would be possible to write one that would work in my situation. I'm also open to any other ways that would make specific selection possible. Any help would be greatly appreciated.