ImageCell doesn't have an editable value, so there is nothing to update. Are you trying to catch click events? If so, do one of the following:
*Option 0:* Add a SelectionModel to the CellTable to handle row selection, *Option 1:* - Override ImageCell#getConsumedEvents() to return "click" so click events are forwarded to the cell. - *and* Override ImageCell#onBrowserEvent() to handle the click event *Option 2:* - Override ImageCell#getConsumedEvents() to return "click" so click events are forwarded to the cell. - *and* Use CellTable#addCellPreviewHandler() to preview events for all cells Thanks, John LaBanca [email protected] On Sat, Mar 12, 2011 at 7:40 AM, Marco Gadaleta <[email protected]>wrote: > Hi i've created a field updater for celltable column. > > It works for TextColum but not for ImageCell. > > > Why this? > > -- > Marco > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
