Hi Guy's

Am looking to delay the display of toolitps within TreePanel nodes. Currently each Node created has its own Qtip although would ideally like an overall setting I can change as this gets very distracting to user.

Alternatively, I have made various attempts to add below to the nodes, but not working. :-(


Ext.Net.Node node = new Ext.Net.Node();
        node.Text = text;
        //node.Qtip = MyTooltipValue;
        
        Ext.Net.QTipCfg iTtip = new Ext.Net.QTipCfg();
        iTtip.Text = MyTooltipValue;
        iTtip.ShowDelay = 50000000;
        node.CustomAttributes.Add(iTtip);
Would appreciate guidance on approach to take / if possible.
Thanks