I have a case where the ASP.NET ListView is a nice solution in the sense that I want multiple formatted selections based on a data source, my only issue is that I'd like to be able to edit all the panels concurrently whilst retaining full binding support.
This would enable me to deal with cases where I have quite a lot of nested data in a decently RAD manner (which is appropriate to the particular application).
I can achieve the desired result by using a user control in the item template however I'd like to know if I can do without.
I suspect the solution is to subclass the ListView - but I can't yet see where the ListView decides which template to render for an item.