I have a gwt-ext EditorGridPanel, by clicking onto a cell, you can edit its value. The cursor is placed at the beginnig of the cell, but I want to select the whole text in this cell if the user clicks on it. Any idea how I can handle this?

I tried some Listeners etc. but none worked for me yet.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Sorry for my english, with Ext-GWT(GXT) it's posible doing this:

final TextField<String> text = new TextField<String>();
    text.setAllowBlank(false);
    CellEditor textEditor = new CellEditor(text);
    textEditor.addListener(Events.StartEdit, new Listener<EditorEvent>() {
      public void handleEvent(EditorEvent be) {
        text.setSelectOnFocus(true);
      }
    });
    column.setEditor(textEditor);
    configs.add(column);

Just find the way in GWT-Ext, I think will something like this.....I hope this help....

link|improve this answer
quick precision: you can just use text.setSelectOnFocus without waiting for a StartEdit event or you'll have to click at least once on a cell to execute this method – Laurent T Feb 15 at 14:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.