Hi I have Gxt 2.1.1 . The tooltip on the header takes about 5 seconds to close because the default value for the dismiss delay is 5 seconds . The Quicktip which is created in the ColumnHeader is not accessible from outside , so i cant update TooltipConfig . Is there anyway to solve this problem for the grid ?
I finally figured out a painful way of overriding Header.onRender() in columnHeader . I used ToolTip instead of QuickTip because the objects are added while rendering and the QuickTip does not give you way to set the ToolTipConfig in the constructor . So the delay will still be 5000 when we override this .
Cant you keep the reference of the Tooltip in header and expose the API ? Creating QuickTip directly in header without reference makes it harder to override .