public class EditTextCell extends AbstractEditableCell<String,com.google.gwt.cell.client.EditTextCell.ViewData>
Cell.Context
Constructor and Description |
---|
EditTextCell()
Construct a new EditTextCell that will use a
SimpleSafeHtmlRenderer . |
EditTextCell(SafeHtmlRenderer<String> renderer)
Construct a new EditTextCell that will use a given
SafeHtmlRenderer
to render the value when not in edit mode. |
Modifier and Type | Method and Description |
---|---|
protected void |
edit(Cell.Context context,
Element parent,
String value)
Convert the cell to edit mode.
|
boolean |
isEditing(Cell.Context context,
Element parent,
String value)
Returns true if the cell is currently editing the data identified by the
given element and key.
|
void |
onBrowserEvent(Cell.Context context,
Element parent,
String value,
NativeEvent event,
ValueUpdater<String> valueUpdater)
Handle a browser event that took place within the cell.
|
void |
render(Cell.Context context,
String value,
SafeHtmlBuilder sb)
Render a cell as HTML into a
SafeHtmlBuilder , suitable for passing
to Element.setInnerHTML(String) on a container element. |
boolean |
resetFocus(Cell.Context context,
Element parent,
String value)
Reset focus on the Cell.
|
clearViewData, getViewData, setViewData
dependsOnSelection, getConsumedEvents, handlesSelection, onEnterKeyDown, setValue
public EditTextCell()
SimpleSafeHtmlRenderer
.public EditTextCell(SafeHtmlRenderer<String> renderer)
SafeHtmlRenderer
to render the value when not in edit mode.renderer
- a SafeHtmlRenderer
instancepublic boolean isEditing(Cell.Context context, Element parent, String value)
AbstractEditableCell
isEditing
in interface Cell<String>
isEditing
in class AbstractEditableCell<String,com.google.gwt.cell.client.EditTextCell.ViewData>
context
- the Context
of the cellparent
- the parent Elementvalue
- the value associated with the cellpublic void onBrowserEvent(Cell.Context context, Element parent, String value, NativeEvent event, ValueUpdater<String> valueUpdater)
AbstractCell
If you override this method to add support for events, remember to pass the event types that the cell expects into the constructor.
onBrowserEvent
in interface Cell<String>
onBrowserEvent
in class AbstractCell<String>
context
- the Cell.Context
of the cellparent
- the parent Elementvalue
- the value associated with the cellevent
- the native browser eventvalueUpdater
- a ValueUpdater
, or null if not specifiedpublic void render(Cell.Context context, String value, SafeHtmlBuilder sb)
Cell
SafeHtmlBuilder
, suitable for passing
to Element.setInnerHTML(String)
on a container element.
Note: If your cell contains natively focusable elements, such as buttons or input elements, be sure to set the tabIndex to -1 so that they do not steal focus away from the containing widget.
render
in interface Cell<String>
render
in class AbstractCell<String>
context
- the Cell.Context
of the cellvalue
- the cell value to be renderedsb
- the SafeHtmlBuilder
to be written topublic boolean resetFocus(Cell.Context context, Element parent, String value)
AbstractCell
This method is a no-op and returns false. If your cell is editable or can be focused by the user, override this method to reset focus when the containing widget is refreshed.
resetFocus
in interface Cell<String>
resetFocus
in class AbstractCell<String>
context
- the Cell.Context
of the cellparent
- the parent Elementvalue
- the value associated with the cellprotected void edit(Cell.Context context, Element parent, String value)
context
- the Context
of the cellparent
- the parent elementvalue
- the current valueCopyright © 2018. All rights reserved.