Ejemplo n.º 1
0
 protected void grid_StartRowEditing(object sender, DevExpress.Web.Data.ASPxStartRowEditingEventArgs e)
 {
     if (!ASPxGridView1.IsNewRowEditing)
     {
         ASPxGridView1.DoRowValidation();
     }
 }
Ejemplo n.º 2
0
 protected void ASPxGridView1_StartRowEditing(object sender,
                                              DevExpress.Web.Data.ASPxStartRowEditingEventArgs e)
 {
     // Validates the edited row if it isn't a new row,.
     if (!ASPxGridView1.IsNewRowEditing)
     {
         ASPxGridView1.DoRowValidation();
     }
 }