Package | com.vmware.ui.lists |
Class | public class ColumnDataSourceInfo |
Inheritance | ColumnDataSourceInfo ![]() |
Deprecated since 5.5.0: The use of this class is deprecated, you should use its XML representation in plugin.xml instead, see the example below.
See also
Property | Defined By | ||
---|---|---|---|
exportProperty : String
Property that is used to export column. | ColumnDataSourceInfo | ||
headerText : String
Column header. | ColumnDataSourceInfo | ||
requestedProperties : Array
Properties requested for that column (usually an array of 1 element)
| ColumnDataSourceInfo | ||
sortProperty : String
Property that is used to sort on column. | ColumnDataSourceInfo |
exportProperty | property |
public var exportProperty:String
Property that is used to export column.
headerText | property |
public var headerText:String
Column header.
requestedProperties | property |
public var requestedProperties:Array
Properties requested for that column (usually an array of 1 element)
sortProperty | property |
public var sortProperty:String
Property that is used to sort on column.
<extension id="com.vmware.samples.chassis.list.sampleColumns"> <extendedPoint>com.vmware.samples.chassis.list.columns</extendedPoint> <object> <items> <com.vmware.ui.lists.ColumnContainer> <uid>com.vmware.samples.chassis.column.name</uid> <dataInfo> <com.vmware.ui.lists.ColumnDataSourceInfo> <headerText>#{name}</headerText> <requestedProperties> <String>name</String> </requestedProperties> <sortProperty>name</sortProperty> <exportProperty>name</exportProperty> </com.vmware.ui.lists.ColumnDataSourceInfo> </dataInfo> </com.vmware.ui.lists.ColumnContainer> ...