The MXML class you create and reference in the <object> element of your extension definition describes the appearance and data in each column you want to add to the object list view. The class you create must be a subclass of the
com.vmware.ui.lists.ColumnSetContainer class.
The ColumnSetContainer class contains an
items property, which is an array of
ColumnContainer objects. Each
ColumnContainer object describes a column, and you must create a
ColumnContainer object for each column you want to add to the object list view.
ColumnContainer Object Properties lists the properties you provide when you create a
ColumnContainer object.
Example: Example Implementation of ColumnSetContainer Class shows an example MXML class that implements a subclass of
ColumnSetContainer. In the example, the class is
VmColumnSetContainer, as referenced in the extension definition in
Example: Example Extension to Virtual Machine Entity List View. The class describes a single column extension to the object list view for Virtual Machine objects.