Our requirement is to create a data grid that exhibits somewhat of an Excel behavior. It should occupy all of available vertical real estate and the available space should be filled with empty rows. For example, if there's space for 10 rows and there are only 3 rows of data we should display 7 additional empty rows. We are using Telerik RadGridView.

I was hoping to do this inside the grid control itself but it looks like there's no good way of accomplishing this since it's a virtualized control (we are binding the data grid to a collection in the view model).

I would prefer not to mess with the source collection in the view models - we are going to have multiple views with similar behavior and I'd like not to replicate it everywhere. It doesn't belong in the view model anyway.

It looks like the cleanest solution is to implement some sort of custom ICollectionView. Unfortunately, built-in Silverlight implementations of this interface are internal, very large and the source for them is not available. Reflector seems to be the only option. I've seen a couple of ICollectionView implementations on the web but they are based on ObservableCollection<T> and I'd prefer not to be tied to a compile-time type.

Before I start rewriting a large chunk of the framework - is there any other way? Am I on the right track? Are there open source ICollectionView implementations available?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.