Hi
I've got a DataGrid that shows a tooltip on each item.. but there are a few items where there shouldn't be a tooltip. So I thought I could prevent the being showed.
protected function toolTipStart(event:ToolTipEvent) : void
{
LOG.debug('Start ' + event);
event.stopImmediatePropagation();
}
But it does not work. Has anyone an idea?
regards Cyrill