Hi I'm trying to remove the tooltip from the checkbox inside an inline itemrenderer in a datagrid but I still get the tooltip box but with nothing in it. I want the tooltip box removed completely. Here is what I have
<mx:DataGrid dataProvider="{s}" width="80%" id="sdg">
<mx:columns>
<mx:DataGridColumn width="14" paddingLeft="2" paddingRight="2" showDataTips="false">
<mx:itemRenderer>
<mx:Component>
<mx:CheckBox change="data.selected = !data.selected; dispatchEvent(new Event('clickCheckbox',true,true))"
selectedField="selected" toolTip="{null}"/>
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
</mx:columns>
</mx:Datagrid>
Thanks for the code starting point makes answer these much easier, for the future although I doubt the world will hear this request please include the Flex version your working with since like Android there's a lot of fragmentation out there, here's what worked for me:
I added some dummy data in there and had to reduce the size of the grid to make it truncate the checkboxes before it would show the tooltip, then I verified what you posted above that nulling them doesn't work. Above I capture the mouseover event and stop it from propagating up to the ToolTipManager, alternatively you could call ToolTipManager.enable=false then set back to true when appropriate.