How to make table Cell Editable?

hi friends
i’m new to ITMILL,i’d like to double click on Table cell make it Editable?
and also how to get specific cell reference?
thank u all;

Haven’t done this one before, but here is the idea that I would try:

  • Set the column type to TextField
  • Make all the columns disabled/readonly by default
  • Attach ItemClickListener to the Table
  • Implement ItemClickListener do check that isDoubleClick to enable the selected TextField

The
ItemClickEvent
contains reference to the cell (item id and property id) that was clicked.

thank you,i’ll try it