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?
SetDataBinding(ds, ds.Tables[0].TableName)and then set NodeTextColumn
e.ColumnSet.NodeTextColumn = e.ColumnSet.Columns("Text")
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.
Ok
thanks for your replies.
I will try to use UltraToolTipManager for my task.