List of usage examples for com.google.gwt.cell.client Cell resetFocus
boolean resetFocus(Context context, Element parent, C value);
From source file:org.kaaproject.avro.ui.gwt.client.widget.grid.AvroUiDataGrid.java
License:Apache License
private <C> boolean resetFocusOnFilterCellImpl(Context context, Header<C> header, Element cellParent) { C headerValue = header.getValue();//ww w. j a v a 2s. co m Cell<C> cell = header.getCell(); return cell.resetFocus(context, cellParent, headerValue); }