haha i dont know what's wrong but it's not working. I'm just going to do a headerRenderer maybe or something
On 1/17/08, Sherif Abdou <[EMAIL PROTECTED]> wrote: > > You want to underline the Data in the Grid correct but not the header?, > this just under lines the values > > <mx:Application > xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" > creationComplete="initApp()" > > > <mx:Script> > > <![CDATA[ > > *private* *function* initApp():*void*{ > > } > > [ > *Bindable*] > > *private* *var* object:Object={name:*"FlexCoders"*,cffUid:*"FlexCodders"*}; > > > ]]> > > </mx:Script> > > <mx:Style> > > .headerCustomStyle > > { > > borderColor: #000080; > > textAlign: 'left'; > > color: #000000; > > fontFamily: 'Arial'; > > themeColor: #ffff00; > > } > > .header > > { > > textDecoration: none; > > } > > </mx:Style> > > <mx:DataGrid dataProvider="{object}" > > id=" > fcsGrid" styleName="headerCustomStyle" > > headerStyleName=" > header" textDecoration="underline" > > alternatingItemColors=" > [#bfdfff, #ffffff]" > > headerColors=" > [#ffff99,#ffffff]" > > borderThickness=" > 2" borderColor="#379bff" > > maxHeight=" > 124" width="237" top="0" height="124" left="25"> > > <mx:columns> > > <mx:DataGridColumn headerText="CFF UID" dataField="cffUid" width="100" > > > </mx:DataGridColumn> > > </mx:columns> > > </mx:DataGrid> > > </mx:Application> > > > > ----- Original Message ---- > From: Dominique Bessette - Halsema <[EMAIL PROTECTED]> > To: [email protected] > Sent: Thursday, January 17, 2008 12:44:01 PM > Subject: Re: [flexcoders] underline in datagrid > > that just made it all underlined, even the header > > <mx:DataGrid > id="fcsGrid" styleName="headerCustomStyle" > > alternatingItemColo rs="[#bfdfff, #ffffff]" > headerColors="[#ffff99,#ffffff]" click="onClick(event)" > borderThickness="2" borderColor="#379bff" > maxHeight="124" width="237" top="0" height="124" left="25"> > <mx:columns> > <mx:DataGridColumn headerText="CFF UID" dataField="cffUid" > width="100" headerStyleName="header" textDecoration="underline" /> > </mx:columns> > </mx:DataGrid> > > > On 1/17/08, Sherif Abdou <[EMAIL PROTECTED] com <[EMAIL PROTECTED]>> > wrote: > > > > you want to do it in the DataGridColumn > > > > ----- Original Message ---- > > From: Dominique Bessette - Halsema < [EMAIL PROTECTED] com<[EMAIL > > PROTECTED]> > > > > > To: [EMAIL PROTECTED] ups.com <[email protected]> > > Sent: Thursday, January 17, 2008 12:39:21 PM > > Subject: Re: [flexcoders] underline in datagrid > > > > it's still not underlineing just the grid. i can get it to underline > > everything or nothing > > > > .headerCustomStyle > > { > > borderColor: #000080; > > textAlign: 'left'; > > color: #000000; > > fontFamily: 'Arial'; > > themeColor: #ffff00; > > > > } > > .header > > { > > textDecoration: none; > > } > > > > <mx:DataGrid > > id="fcsGrid" styleName="headerCustomStyle" > > headerStyleName="header" textDecoration="underline" > > alternatingItemColo rs="[#bfdfff, #ffffff]" > > headerColors="[#ffff99,#ffffff]" click="onClick(event)" > > borderThickness="2" borderColor="#379bff" > > maxHeight="124" width="237" top="0" height="124" left="25"> > > <mx:columns> > > <mx:DataGridColumn headerText="CFF UID" dataField="cffUid" > > width="100" /> > > </mx:columns> > > </mx:DataGrid> > > > > > > On 1/16/08, Alex Harui < [EMAIL PROTECTED] com <[EMAIL PROTECTED]>> wrote: > > > > > > Set headerStyleName on the columns to have tetDecoration= "none" > > > > > > > > > ------------------------------ > > > > > > *From:* [EMAIL PROTECTED] ups.com > > > <[email protected]>[mailto:[EMAIL PROTECTED] > > > ups.com <[email protected]>] *On Behalf Of *Dominique > > > Bessette - Halsema > > > *Sent:* Wednesday, January 16, 2008 4:18 PM > > > *To:* [EMAIL PROTECTED] ups.com <[email protected]> > > > *Subject:* Re: [flexcoders] underline in datagrid > > > > > > > > > > > > what if i dont want the datagrid's title to be underlined > > > > > > On 1/16/08, *Sherif Abdou* < [EMAIL PROTECTED] com<[EMAIL PROTECTED]>> > > > wrote: > > > > > > textDecoration=" > > > > > > underline" > > > > > > > > > > > > ----- Original Message ---- > > > From: dominique.bessette < [EMAIL PROTECTED] com <[EMAIL PROTECTED]>> > > > To: [EMAIL PROTECTED] ups.com <[email protected]> > > > Sent: Wednesday, January 16, 2008 5:46:52 PM > > > Subject: [flexcoders] underline in datagrid > > > > > > How do I underline my text in a datagrid? > > > > > > > > > > > > > > > ------------------------------ > > > > > > Looking for last minute shopping deals? Find them fast with Yahoo! > > > Search.<http://us.rd.yahoo.com/evt=51734/*http:/tools.search.yahoo.com/newsearch/category.php?category=shopping> > > > > > > > > > > > > > > > > > > > > ------------------------------ > > Never miss a thing. Make Yahoo your > > homepage.<http://us.rd.yahoo.com/evt=51438/*http://www.yahoo.com/r/hs> > > > > > > > > ------------------------------ > Looking for last minute shopping deals? Find them fast with Yahoo! > Search.<http://us.rd.yahoo.com/evt=51734/*http://tools.search.yahoo.com/newsearch/category.php?category=shopping> >

