Hello there,
My ColumnSetContainer class looks this:
<?xml version="1.0" encoding="utf-8"?>
xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:lists="com.vmware.ui.lists.*">
<fx:Script>
<![CDATA[
import mx.resources.ResourceManager;
private function getString(key:String) : String {
return ResourceManager.getInstance().getString('my_ui', key);
}
]]>
</fx:Script>
<lists:items>
<lists:ColumnContainer uid="my.handle.column.name">
<lists:dataInfo>
<lists:ColumnDataSourceInfo requestedProperties="{['name']}"/>
</lists:dataInfo>
<lists:component>
<mx:AdvancedDataGridColumn
headerText="{getString('my.column.property.name')}"
dataField="name"/>
</lists:component>
</lists:ColumnContainer>
</lists:items>
</lists:ColumnSetContainer>
Somehow I dont see any of the view features (Filter, Find, Export) working for me. Am i missing something here.
Regards,
Vaibhav