I use RadListView with property ShowCheckBoxes = true.
1. Business logic requires me to disable CheckBox for certain item. How can i do that?
2. As alternative i would like to disable the whole item, not it's checkbox. I try to do that this way:
...
foreach (var item in lvListView.Items)
item.Enabled = false;
...
This source does not work - after it all items are still selectable and their checkboxes are selectable too.
1. Business logic requires me to disable CheckBox for certain item. How can i do that?
2. As alternative i would like to disable the whole item, not it's checkbox. I try to do that this way:
...
foreach (var item in lvListView.Items)
item.Enabled = false;
...
This source does not work - after it all items are still selectable and their checkboxes are selectable too.