We've been using RadGrid on our site and love it. Now we need to show more than 1 row of data per record. I could not find a way for RadGrid to do this, so I've been looking at RadListView. Then I came across this link...
http://demos.telerik.com/aspnet-ajax/grid/examples/programming/listview/defaultcs.aspx
Now knowing I can use RadGrid is great since I'm familiar with it. But before coding, I want to know when I'd use RadListView over RadGrid, in case I'm missing something. For instance, I would need the RadGrid in the link to do the following, which I've done in our "single row" RadGrids...
1) Change checkboxes and comboboxes right on form on each record. (via GridTemplateColumn and ItemTemplate)
2) Have an "Edit" command show a popup for other record data. (via FormTemplate and EditMode="PopUp")
3) Select records that let me access the record's data clientslide (via get_masterTableView())
BTW, we still need each RadGrid record to go all the way across the control--so records wouldn't be side-by-side like in the example, as we simply need 2-3 lines of data to display within each record. In that case, would the link below be a better example of what we need? Can it do the 3 points above? Or functionally, is it basically the same as the first link?
http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/cardview/defaultcs.aspx
Thanks for any direction you can give as this will greatly determine the path we take.