In an App When used a DataGrid control the Headers values are shown by default and to avoid it there is a property called showHeaders and the default valuse is “true” ,so to disable the headers set it to false. like: showHeaders=”false”
Thats it the headers are gone..
code Example:
<mx:DataGrid x=”98″ y=”212″ id=”dgcolor” showHeaders=”false”>
<mx:columns>
<mx:DataGridColumn headerText=”Column 1″ />
<mx:DataGridColumn headerText=”Column 2″ />
</mx:columns>
</mx:DataGrid>
The difference is visible..
Posted by kumargandhi
Posted by kumargandhi 