Hi,
Just following the previous thread post of iterating the rows . I have following code
ObservableCollection
<DashboardService.AttendanceDTO> lstAttendance =ObservableCollection<DashboardService.AttendanceDTO>) data;
this.dgvDayAttendance.ItemsSource = lstAttendance;
this
.dgvDayAttendance.Rebind();
var rows = this.dgvDayAttendance.ChildrenOfType<Telerik.Windows.Controls.GridView.GridViewRow>();
foreach
(GridViewRow row in rows)
{
if (row is GridViewNewRow) continue;
.... rest of code
}
Still i am unable to iterate all the rows which my grid shows .i get only one row which is of type GridViewNewRow in the above foreach loop . I am using Sivlerlight 2010 controls with c# with vs 2008 and expression blend 3 . Further can you also give me some example of changing the backgoud color of cell depending on the cell value.
thanks