When the listgrid field is set to receive text , then when when you enter the field and select all the text and hit DELL or BACKSPACE the text gets deleted but the event addChangedHandler does not detect any change. I must hit an alphabetic Key to make the event detected.
i am using the following code for the listgrid field remark
Remark.addChangedHandler(new ChangedHandler(){
@Override
public void onChanged(ChangedEvent event) {
String remark =event.getValue().toString();
see the attachment for the remark filed.
Could you please help ?
i am using the following code for the listgrid field remark
Remark.addChangedHandler(new ChangedHandler(){
@Override
public void onChanged(ChangedEvent event) {
String remark =event.getValue().toString();
see the attachment for the remark filed.
Could you please help ?
Comment