Hello,Is it possible the creation of rows in follwing scenario?The list lstSheetData is notified list. Initially, its having 20 rows. Then, the itemsource is set like this - igGrid.ItemsSource = lstSheetData;Later, the list is updated with 50 rows. Now, do the rows get created instead of above code again?Thanks,Pragati.
If your list is an ObservableCollection<T>, then anytime you add a new tiem to the collection the grid will update to reflect the new rows.
Thanks for your reply.Pragati.