Hi,
How can I display two columns like Allowed and Name in list box.
Allowed column should display check boxes. Thanks
If you have a boolean column for the checkboxes, just set UltraListView.ViewSettingsDetails.CheckBoxStyle to None.
Thanks for the quick response. when i am doing like that am getting two check boxes for each name under Allowed column.
I think one is because of System.boolean filed (cannot be checked or unchecked) and another one is becoz of UltraListView.ViewSettingsDetails.CheckBoxStyle property which can be checked or unchecked. so how do i resolve the problem
I am trying to display a Name as list view item and i need another column which shows check box for the name string. so
The 'List' view does not use SubItemColumns, but 'Details' view does. The caviat there is that you will have column headers in that view. To do this in that view, add a boolean column (Allowed) to the SubItemColumns collection.
Note that you could enable checkboxes for the List view by setting the UltraListView.ViewSettingsList.CheckBoxStyle property. For that matter, you can also enable them for the Details view by setting the UltraListView.ViewSettingsDetails.CheckBoxStyle property.