Disable tooltip on palette

Is it possible to disable tooltips on palette?

Yes. You could either make or change the templates on the palette, or override the palette behavior so that it never shows tooltips. Try:

// Stop the default functionality on the Palette only:
myPallette.toolManager.doToolTip = function() {}; 

Seems cleaner to separate the templates, tnx :-)