Hello,
Is It possible to edit "SubItems"? I mean analog of method "BeginEdit" for "Item" or any another way.
Thanks,
Ruslan
No; the control was patterned after the .NET ListView and Windows Explorer, neither of which support editing of sub-items. You could use an UltraGrid or UltraTree if you need the ability to edit cells in all columns.
SubItems cannot be edited but they do use the Infragistics embeddable editor architecture to render the values. This is to leverage the functionality of existing editors; for example, a DateTimeEditor supports formatting dates, so it can be used to render date values for a sub-item.
That KB article specifically names the control's MainColumn, which does support editing. I did not see any wording that implies that sub-item columns can be edited.
We can edit subitems column value by creating extension method, getter setter of value then we pass the value to ultraListView1.Items[index].SubItems[0].Value = newValue; on double click or itemclick Event