Re: [flexcoders] ToolTip for each row in a DataGrid

2008-06-09 Thread Josh McDonald
Your renderer should be able to get column.dataTipField or column.dataTipFunction and act accordingly - or you might be able to extend some base columnRenderer rather than Canvas or whatever you're using now and inherit the behaviour. Or, it might be implemented in the datagrid rendering pipeline

Re: [flexcoders] ToolTip for each row in a DataGrid

2008-06-08 Thread Josh McDonald
Here's what you need mate: http://livedocs.adobe.com/flex/3/langref/mx/controls/dataGridClasses/DataGridColumn.html#dataTipFunction -Josh On Mon, Jun 9, 2008 at 2:16 PM, Manu Dhanda [EMAIL PROTECTED] wrote: Hii, How can I make a tooltip that will work for each row of datagrid?? Right now,

RE: [flexcoders] ToolTip for each row in a DataGrid

2008-06-08 Thread Joan Lafferty
Use dataTips for DataGrid rather than tooltip. You can determine what each dataTip displays for a particular row by specifying the dataTipField or dataTipFunction. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manu Dhanda Sent:

RE: [flexcoders] ToolTip for each row in a DataGrid

2008-06-08 Thread Manu Dhanda
So, if you are using itemrenderer, then it won't work for that particular column?? Unless you define each tooltip for those in the renderer itself? Or Is there anyway to handle the datatips for the columns(with renderer) at one place(as using the same function as for other columns). Thanks.