...
com.cohga.html.client.main.gridView
Sub-tags
name | type | cardinality | default | description |
---|---|---|---|---|
label | String | 0..1 |
| Label to display in tab |
location | String | 1..1 |
| Which region to add the view to |
toolbar | grid actions | 0..1 n |
| A collection of tools to add to the panel |
format | format definitions | 0..1 |
| A collection of formatting options |
emptyMsg | string | 0..1 | "No data to display" | Text to display for no results |
displayMsg | string | 0..1 | "Displaying {0} - {1} of {2}" | Paging toolbar text |
beforePageText | string | 0..1 | "Page" | Label before page number |
afterPageText | string | 0..1 | "of {0}" | Text after page number |
firstText | string | 0..1 | "First Page" | Tooltip for first page button |
prevText | string | 0..1 | "Previous Page" | Tooltip for previous page button |
nextText | string | 0..1 | "Next Page" | Tooptip for next page button |
lastText | string | 0..1 | "Last Page" | Tooltip for last page button |
refreshText | string | 0..1 | "Refresh" | Tooltip for refresh button |
itemsText | string | 0..1 | "Items per page" | Text for items per page |
Example
Basic grid view
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<view id='com.cohga.html.client.main.gridView'> <label>Identify</label> <location>south</location> </view> |
...