|

06-25-2009, 10:03 PM
maybe check these factors when you are using ICellModifer:
1. you need create TextCellEditor for each column
2. canModify(Object element, String property)method should return true
3. modify(Objecr element, String property, Object value) should process the certain cell data, to do some modify, I suggest to use ArrayList, it could be easier.
4. you should set this modifier to certain TableView
In a word, if there is one mistake in the upper steps, it will leads the consequence which can't work. I tried some times after I set all these thing ready, I didn't see your problem. Wish it could be helpful.
|