org.apache.beehive.netui.databinding.datagrid.api.rendering
Interface IDataGridMessageKeys


public interface IDataGridMessageKeys

This interfaces exposes a set of message keys that are used by the data grid when looking-up message values for text and other strings during rendering.

Custom resource bundles implemented with Java property files can be exposed via a DataGridResourceProvider. Such property files should contain message keys whose values match the values of the messages keys defined here.


Field Summary
static String DATAGRID_MSG_NODATA
           String key for the message displayed when no data is available in the data set to which a data grid is bound.
static String DATAGRID_RESOURCE_PATH
           String key for the root resource path used when building a URL to resources such as images rendered in a data grid.
static String PAGER_FMT_BANNER
           String key for the text displayed in a pager label when showing Page # of #.
static String PAGER_MSG_FIRST
           String key for the text displayed when rendering a link for paging to the first page of a data set.
static String PAGER_MSG_LAST
           String key for the text displayed when rendering a link for paging to the last page of a data set.
static String PAGER_MSG_NEXT
           String key for the text displayed when rendering a link for paging to the logical next page of a data set.
static String PAGER_MSG_PREVIOUS
           String key for the text displayed when rendering a link for paging to the logical previous page of a data set.
static String SORT_ASC_IMAGE_PATH
           String key for the name of an image used when rendering the ascending sort direction.
static String SORT_DESC_IMAGE_PATH
           String key for the name of an image used when rendering the descending sort direction.
static String SORT_NONE_IMAGE_PATH
           String key for the name of an image used when rendering the no sort direction.
 

Field Detail

DATAGRID_MSG_NODATA

static final String DATAGRID_MSG_NODATA

String key for the message displayed when no data is available in the data set to which a data grid is bound.
Default value:No data to display

See Also:
Constant Field Values

DATAGRID_RESOURCE_PATH

static final String DATAGRID_RESOURCE_PATH

String key for the root resource path used when building a URL to resources such as images rendered in a data grid.
Default value:resources/beehive/version1/images

See Also:
Constant Field Values

SORT_ASC_IMAGE_PATH

static final String SORT_ASC_IMAGE_PATH

String key for the name of an image used when rendering the ascending sort direction.
Default value:/sortdown.gif

See Also:
Constant Field Values

SORT_DESC_IMAGE_PATH

static final String SORT_DESC_IMAGE_PATH

String key for the name of an image used when rendering the descending sort direction.
Default value:/sortup.gif

See Also:
Constant Field Values

SORT_NONE_IMAGE_PATH

static final String SORT_NONE_IMAGE_PATH

String key for the name of an image used when rendering the no sort direction.
Default value:/sortup.gif

See Also:
Constant Field Values

PAGER_MSG_FIRST

static final String PAGER_MSG_FIRST

String key for the text displayed when rendering a link for paging to the first page of a data set.
Default value:First

See Also:
Constant Field Values

PAGER_MSG_NEXT

static final String PAGER_MSG_NEXT

String key for the text displayed when rendering a link for paging to the logical next page of a data set.
Default value:Next

See Also:
Constant Field Values

PAGER_MSG_PREVIOUS

static final String PAGER_MSG_PREVIOUS

String key for the text displayed when rendering a link for paging to the logical previous page of a data set.
Default value:Previous

See Also:
Constant Field Values

PAGER_MSG_LAST

static final String PAGER_MSG_LAST

String key for the text displayed when rendering a link for paging to the last page of a data set.
Default value:Last

See Also:
Constant Field Values

PAGER_FMT_BANNER

static final String PAGER_FMT_BANNER

String key for the text displayed in a pager label when showing Page # of #.
Default value:Page {0} of {1} The {0} is substituted with a 1-based value for the current page. The {1} is substituted with a 1-based value for the last page.

See Also:
Constant Field Values