Class GridBaseAppearance
- java.lang.Object
-
- com.sencha.gxt.theme.base.client.grid.GridBaseAppearance
-
- All Implemented Interfaces:
GridView.GridAppearance
- Direct Known Subclasses:
BlueGridAppearance
,GrayGridAppearance
public abstract class GridBaseAppearance extends Object implements GridView.GridAppearance
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
GridBaseAppearance.GridResources
static interface
GridBaseAppearance.GridStyle
static interface
GridBaseAppearance.GridTemplates
-
Constructor Summary
Constructors Constructor Description GridBaseAppearance(GridBaseAppearance.GridResources resources)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.google.gwt.dom.client.Element
findCell(com.google.gwt.dom.client.Element elem)
com.google.gwt.dom.client.Element
findRow(com.google.gwt.dom.client.Element elem)
com.google.gwt.dom.client.Element
getRowBody(com.google.gwt.dom.client.Element row)
com.google.gwt.dom.client.NodeList<com.google.gwt.dom.client.Element>
getRows(XElement parent)
void
onCellSelect(com.google.gwt.dom.client.Element cell, boolean select)
void
onRowHighlight(com.google.gwt.dom.client.Element row, boolean highlight)
void
onRowOver(com.google.gwt.dom.client.Element row, boolean over)
void
onRowSelect(com.google.gwt.dom.client.Element row, boolean select)
void
render(com.google.gwt.safehtml.shared.SafeHtmlBuilder sb)
Renders the HTML markup for the widget.com.google.gwt.safehtml.shared.SafeHtml
renderEmptyContent(String emptyText)
GridView.GridStyles
styles()
-
-
-
Constructor Detail
-
GridBaseAppearance
public GridBaseAppearance(GridBaseAppearance.GridResources resources)
-
-
Method Detail
-
render
public void render(com.google.gwt.safehtml.shared.SafeHtmlBuilder sb)
Description copied from interface:GridView.GridAppearance
Renders the HTML markup for the widget.- Specified by:
render
in interfaceGridView.GridAppearance
- Parameters:
sb
- the safe html builder
-
styles
public GridView.GridStyles styles()
- Specified by:
styles
in interfaceGridView.GridAppearance
-
findRow
public com.google.gwt.dom.client.Element findRow(com.google.gwt.dom.client.Element elem)
- Specified by:
findRow
in interfaceGridView.GridAppearance
-
getRows
public com.google.gwt.dom.client.NodeList<com.google.gwt.dom.client.Element> getRows(XElement parent)
- Specified by:
getRows
in interfaceGridView.GridAppearance
-
findCell
public com.google.gwt.dom.client.Element findCell(com.google.gwt.dom.client.Element elem)
- Specified by:
findCell
in interfaceGridView.GridAppearance
-
onRowOver
public void onRowOver(com.google.gwt.dom.client.Element row, boolean over)
- Specified by:
onRowOver
in interfaceGridView.GridAppearance
-
onRowHighlight
public void onRowHighlight(com.google.gwt.dom.client.Element row, boolean highlight)
- Specified by:
onRowHighlight
in interfaceGridView.GridAppearance
-
onRowSelect
public void onRowSelect(com.google.gwt.dom.client.Element row, boolean select)
- Specified by:
onRowSelect
in interfaceGridView.GridAppearance
-
onCellSelect
public void onCellSelect(com.google.gwt.dom.client.Element cell, boolean select)
- Specified by:
onCellSelect
in interfaceGridView.GridAppearance
-
getRowBody
public com.google.gwt.dom.client.Element getRowBody(com.google.gwt.dom.client.Element row)
- Specified by:
getRowBody
in interfaceGridView.GridAppearance
-
renderEmptyContent
public com.google.gwt.safehtml.shared.SafeHtml renderEmptyContent(String emptyText)
- Specified by:
renderEmptyContent
in interfaceGridView.GridAppearance
-
-