I use GXT (sencha version 3.0.1)
I have grid like this:
When I select second Column and try to move next Column use Tab Key to move and its works fine, but when I select any value from combo and after try to move next Column its go somewhere else (outside of grid).
what to do? I need to focus (edit next column) on Tab key. tried this but not works:
combo2.addSelectionHandler( new SelectionHandler<Street>() {
@Override
public void onSelection( SelectionEvent<Street> event ) {
grid.getSelectionModel().selectNext( false );
}
} );
What to do?