Re: [flexcoders] dataTipFunction on DataGridColumn with custom itemRenderer?

2007-05-12 Thread Igor Costa

Todd
Presuming on what Alex Harui said,  here's how to procedure:








And my function is defined like this:

public function showDaysToolTip(obj:Object): String {
trace("in showDaysToolTip");
return "testing";
}


Regards.

On 2/13/07, Todd Breiholz <[EMAIL PROTECTED]> wrote:


  Is it just me, or is it not possible to set a dataTipFunction on a
DataGridColumn that uses a custom itemRenderer?

I have the following DataGridColumn defined:



And my function is defined like this:

public function showDaysToolTip(obj:Object): String {
trace("in showDaysToolTip");
return "testing";
}

But this is never getting called.

Am I doing something unsupported?

Thanks!

Todd
 





--

Igor Costa
www.igorcosta.org
www.igorcosta.com
skype: igorpcosta


[flexcoders] dataTipFunction on DataGridColumn with custom itemRenderer?

2007-02-13 Thread Todd Breiholz
Is it just me, or is it not possible to set a dataTipFunction on a
DataGridColumn that uses a custom itemRenderer?

I have the following DataGridColumn defined:




And my function is defined like this:

public function showDaysToolTip(obj:Object): String {
trace("in showDaysToolTip");
return "testing";
}

But this is never getting called.

Am I doing something unsupported?

Thanks!

Todd