Hello,
I am new to development.
I am using telerik radgridview control.
In the code behind I have assigned the ItemsSource property for the radgridview as below
ObservableCollection<IDictionary> data = new ObservableCollection<IDictionary>();
IEnumerable dataSource = data.ToDataSource();
DataGrid.ItemsSource = dataSource;
There are 2 columns and 10 records in the output I see.
I have created a new column through code and added in the grid. I can see that and the data bound using ItemsSource property in the output.
What I want is I want to add image in the first column that I added using code in the radgridview.
I want to loop all the rows in the radgridview. Also I want to loop all cells in the column.
I tried ChildrenOfType<GridViewCell> , ChildrenOfType<GridViewRow> , ChildrenOfType<GridViewRowItem> , I get no values . Also when I tried DataGrid.Items I don't get any results.
Please help me with this.
Thanks