RE: [flexcoders] Re: Trying to underline datagrid header text. How???

2008-09-16 Thread Alex Harui
but the underlying collection would not be sorted. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cjcuccaro Sent: Tuesday, September 16, 2008 6:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Trying to underline datagrid header text. How

RE: [flexcoders] Re: Trying to underline datagrid header text. How???

2008-09-15 Thread Alex Harui
@yahoogroups.com Subject: [flexcoders] Re: Trying to underline datagrid header text. How??? This is my check I put in the set data, sortEventHandler, and clickHandler events within the renderer: if(DataGrid(listData.owner).dataProvider.sort != null){ var sortVal:String = DataGrid(listData.owner

RE: [flexcoders] Re: Trying to underline datagrid header text. How???

2008-09-14 Thread Alex Harui
: Sunday, September 14, 2008 6:28 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Trying to underline datagrid header text. How??? Hmmm. Thought I was data-driven. I did attempt to check the sortField but it was always null. I put checks in the sortEventHandler and the clickHandler

RE: [flexcoders] Re: Trying to underline datagrid header text. How???

2008-09-13 Thread Alex Harui
PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Trying to underline datagrid header text. How??? I believe I got it. I use the added sortEventHandler event listener to set the style textDecoration to none and the clickHandler to reset the textDecoration to underline. private function

RE: [flexcoders] Re: Trying to underline datagrid header text. How???

2008-09-13 Thread Alex Harui
6:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Trying to underline datagrid header text. How??? Well thought I had it licked but not! It works great until I make my HTTPService call to the Spring controller on the server to get the sorted result. Just like the sort arrow