Something that works
<s:GridColumn dataField="country.code" headerText="Country Code"/>
Something that doesn't
<mx:AdvancedDataGridColumn dataField="country.code" headerText="Country Code" width="50" />
We have many more grand-child attribute like country.code, and we have to use AdvancedDataGrid. Looking deeper into function set dataField(value:String) of both GridColumn, only Normal Grid supports dot ".".
We don't want to use labelFunction as we have 50+ columns like that... If there the way to extend Advanced Grid Column to support dot ?
Could you please suggest a solution? Thank you