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>
____________________________________________________________________________________
Looking for last minute shopping deals?
Find them fast with Yahoo! Search.
http://tools.search.yahoo.com/newsearch/category.php?category=shopping
-------------------------------------------------------------
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
-------------------------------------------------------------