Exemple #1
0
 void radGridView1_CreateRow(object sender, GridViewCreateRowEventArgs e)
 {
     if (e.RowType == typeof(GridDataRowElement))
     {
         e.RowType = typeof(CustomRowElement);
     }
 }
Exemple #2
0
 protected override void OnCreateRow(object sender, GridViewCreateRowEventArgs e)
 {
     if (object.ReferenceEquals(e.RowType, typeof(GridDataRowElement)))
     {
         e.RowType = typeof(RowDetailsRowElement);
     }
     base.OnCreateRow(sender, e);
 }
 private void gridOrphans_CreateRow(object sender, GridViewCreateRowEventArgs e)
 {
 }