Hi,
I need to add check boxes in the first column along with the text (as is the case of image with text) for a tree in OutLook Express view style. Is it possible? If so, how can i achieve that.
or else should i need to provide an additional column to show check boxes and text in other column.
Thanks & regards,
Sriram Sarma.
With the OutlookExpress ViewStyle, you won't be able to show checkboxes for some nodes and not others, because only one ColumnSet can define the columns that are displayed.
Assigning an UltraCheckEditor to the EditorControl property will show a checkbox, but not text, so you cannot have a cell with both text and a checkbox inside it. Regarding not being able to change the CheckState through the UI, you might have to set the UltraTree.Override.CellClickAction property and/or the UltraTree.ColumnSettings.AllowCellEdit property.
Hi Brain,
By providing an additional column, it is displaying check boxes for all the nodes. For me there is no need to show check boxes for Node Level 1. How can i control this? Further, my requirement doesnt support to have a separate column. I am using
m_ultraCheckEditor.Text = "New Text" m_ultraTreeNode.Cells["FirstColumn"].EditorControl = m_ultraCheckEditor; for showing checkbox and text together. But i am unable to change the checked state through UI.
srirambngl said:should i need to provide an additional column to show check boxes and text in other column.