Hi,
We have a requirement of binding the RadGridView with dynamic data. Whenever a new data comes in, I am assigning that data like this
public ICollectionView SampleView{get;set;}
// ViewModel where dynamic data gets updated.
this.SampleView =new CollectionViewSource { Source = dummyCollection}.View;
In XAML
We have a requirement of binding the RadGridView with dynamic data. Whenever a new data comes in, I am assigning that data like this
public ICollectionView SampleView{get;set;}
// ViewModel where dynamic data gets updated.
this.SampleView =new CollectionViewSource { Source = dummyCollection}.View;
In XAML
<telerik:RadGridView Grid.Row="0"ItemsSource ="{Binding SampleView}" />
This is the way I am binding the itemssource, but the UI is not getting bound. Kindly help.