This is more of a curiosity question. Sometimes I add a single item to my listview when I'm "Loading" or displaying other types of informational messages. Out of curiosity, is there a way to add an item and specify its column index all in one line? Right now I create the item, then specify its column index, and then set the text.
Say I have a RadListview created, columns already added are A,B,C,D,E. I want to simply add some entry under the Column "C" that says "Loading" but all in a single line of code.
This is not important, just curious if there is an easier way of doing it vs :
lv.Items.Insert(0, new ListViewDataItem("Test") { Text = "Test" });
lv.Items[0]["MyColumn"] = "Test";
Thanks!