Re: GWT Celltable: How to apply mouse enter event in celltable's cell

2011-10-31 Thread Sudhakar Abraham
Subclass the EditTextCell(), call the onBrowserEvent() method. This method handle a browser event that took place within the cell. Capture the event using event.getType(). S. Abraham www.DataStoreGwt.com Persist objects directly in Google App Engine On Oct 31, 1:28 pm, vaibhav bhalke wrote: > H

Re: GWT Celltable: How to apply mouse enter event in celltable's cell

2011-10-31 Thread Ashwin Desikan
Capture the click event/ change events. You will have to override the EditableCell and write your own OnBrowseEvent Handler. For reference, check the code for EditableTextCell. it actually would give you hints on how to check for old values as it already does, you can extend it to perform your

GWT Celltable: How to apply mouse enter event in celltable's cell

2011-10-31 Thread vaibhav bhalke
Hi, How to apply mouse enter event in celltables cell. If Mouse enter in cell for record edition then I want to set string to Record State column that record is edited "Record modify" On Mouse enter I will check cellvalaue is not equal old value then I will set "Record modify" value to related rec