can't go through. Im using vb.net, how do i add items in multiple columns and make the 2nd column editable and the 1st one is not?
viewtype is "ListView"
dim itm as listviewdataitem
itm = new listviewdataitem
itm.text = "data in col1"
radlistview1.items.add(itm)
You can disable editing the first column by handling the ItemEditing event and checking the CurrentColumn property of RadListView. This scenario is demonstrated in the attached project.
I hope you find it useful. Do not hesitate to write back if you have any further questions.