Provides a means of displaying attribute information relating to the currently selected entities.
ID
com.cohga.html.client.main.gridView
Sub-tags
Name |
type |
cardinality |
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 |
A collection of tools to add to the panel |
format |
format definitions |
0..1 |
A collection of formatting options |
Example
<view id='com.cohga.html.client.main.gridView'> <label>Identify</label> <location>south</location> </view>
<view id="com.cohga.html.client.main.gridView"> <label>Data</label> <location>center.south</location> <toolbar> ... </toolbar> <!-- override column widths --> <format> <!-- set column widths for columns in a specific data --> <data id="ar_property_details"> <column id="PropNo"> <width>20</width> </column> <column id="StreetType"> <width>50</width> </column> </data> <data id="ar_road_details"> <column id="RoadName"> <width>200</width> </column> <column id="RoadType"> <width>50</width> </column> </data> <!-- set column width globally for the column in any data --> <column id="StreetName"> <width>200</width> </column> <column id="Suburb"> <width>250</width> </column> </format> </view>