Example usage for com.google.gwt.cell.client Cell resetFocus

List of usage examples for com.google.gwt.cell.client Cell resetFocus

Introduction

In this page you can find the example usage for com.google.gwt.cell.client Cell resetFocus.

Prototype

boolean resetFocus(Context context, Element parent, C value);

Source Link

Document

Reset focus on the Cell.

Usage

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);
}