Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
400
Node Text and SetDataBinding(ds, ds.Tables[0].TableName);
posted

Hi,
I cannot see caption text in the tooltip of the Node on mouse move, when bind UltraTree to DataSet like this:
SetDataBinding(ds, ds.Tables[0].TableName)
and then set NodeTextColumn

e.ColumnSet.NodeTextColumn = e.ColumnSet.Columns("Text") in ColumnSetGenerated event.
How can I control the Node.Text?

Parents
  • 69832
    Suggested Answer
    Offline posted

    Tooltips are only displayed when the node's text is not fully visible. Furthermore, the value of the node's Text property (which in this case is provided by the NodeTextColumn) is what gets displayed in the tooltip. If you want tooltips to appear even when the node's Text is fully visible, and/or display something besides the node's Text in the tooltip, you would have to use a ToolTip component or our UltraToolTipManager and display a tooltip in response to (for example) the control's MouseEnterElement event. If this is what you want to do and you need guidance on how to proceed, repost and we can try to help.

Reply Children
No Data