bug!!! :) Looks like you are using Flex SDK 3 B 1 or less. I compiled your code against the latest Moxie 2 and works fine.
In fact, here it is: https://bugs.adobe.com/jira/browse/SDK-9406 As a work around you could prolly use dataTipFunction. DK On Jan 31, 2008 4:23 PM, Sydney R. Bennett <[EMAIL PROTECTED]> wrote: > I'm trying to get dataTip to work on a DataGrid. My dataProvider is an > XMLList. But no matter what I do the dataTip that pops up contains the > entire XML. Also, it seems the tip pops up for every cell and not just for > the cells that get truncated. Has anyone run into this? I am thinking it > doesn't like XML.... > > Thanks, > Syd > > > Here's my code: > > <?xml version="1.0" encoding="utf-8"?> > > > <mx:XMLList id="testData"> > <row> > <col1>1</col1> > <col2>Zzzzzzzzzzzzzzzzzzzzzzzzzzzzz</col2> > </row> > <row> > <col1>2</col1> > <col2>G</col2> > </row> > </mx:XMLList> > > > <mx:DataGrid id="dataTable" dataProvider="{testData}"> > <mx:columns> > <mx:DataGridColumn headerText="Column 1" > showDataTips="true" > dataTipField="col1" dataField="col1" /> > <mx:DataGridColumn headerText="Column 2" > showDataTips="true" > dataTipField="col2" dataField="col2" /> > </mx:columns> > </mx:DataGrid> > > </mx:Application> > > ------------------------------ > Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it > now.<http://us.rd.yahoo.com/evt=51733/*http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ> > > ------------------------------------------------------------- > To unsubscribe from this list, simply email the list with unsubscribe in > the subject line > > For more info, see http://www.affug.com > Archive @ http://www.mail-archive.com/discussion%40affug.com/ > List hosted by FusionLink <http://www.fusionlink.com> > ------------------------------------------------------------- -- Douglas Knudsen http://www.cubicleman.com this is my signature, like it? ------------------------------------------------------------- To unsubscribe from this list, simply email the list with unsubscribe in the subject line For more info, see http://www.affug.com Archive @ http://www.mail-archive.com/discussion%40affug.com/ List hosted by http://www.fusionlink.com -------------------------------------------------------------
