So ViewStyle of my Tree is set to Grid but I am overriding first few levels to make them appear as standard nodes (not show the grid columns).
tree.NodeLevelOverrides[0].ShowColumns = Infragistics.Win.DefaultableBoolean.False;
How can I make the checkbox appear next to each of these overriden nodes (while not removing the override)?
The following line does not do the trick:
tree.NodeLevelOverrides[0].NodeStyle = NodeStyle.CheckBox;
I want the node to look like a regular tree node with a checkbox next to it.Thanks.
Thanks for looking into that. It is sort of important for the design to make all top level nodes show as standard tree nodes. Any chance of resolution from the developers?
FYI, I checked it out and this does, in fact, appear to be a bug. So I forwarded this thread over to Infragistics Developer Support so they can create a case for you and write up the issue for developer review.
Hi,
I would have thought this would work, but I tried it out and I am getting the same results - it does not show the CheckBox.
I'm not sure that is. This might be a bug. I will look into it and get back to you.
You could, of course, work around this by using columns on the first band. You would modify the ColumnSet for the first band so that all of the columns are hidden or removed except the one you want to show the text. Then you could add an unbound boolean column into the ColumnSet to show the checkbox.