[flexcoders] Re: Datagrid headers without separators

2008-02-20 Thread Aasim
Thanks Peeyush and Tom. It works now. -Aasim --- In flexcoders@yahoogroups.com, Peeyush Tuli [EMAIL PROTECTED] wrote: The way you are doing it will do it only once, then the view is refreshed to original. You need to override the protected method updateDisplayList and then call

[flexcoders] Re: Datagrid headers without separators

2008-02-19 Thread Aasim
I am still unable to do it...Here is my code ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical creationComplete=init() xmlns:classes=classes.* mx:Script ![CDATA[ import

Re: [flexcoders] Re: Datagrid headers without separators

2008-02-19 Thread Peeyush Tuli
The way you are doing it will do it only once, then the view is refreshed to original. You need to override the protected method updateDisplayList and then call clearSeparators. updateDisplayList is the method invoked by flex itself to update the view of a component. override protected