protected void rgGrid_UpdateCommand(object sender, GridCommandEventArgs e) { try { UserControl userControl = (UserControl)e.Item.FindControl(GridEditFormItem.EditFormUserControlID); Label errorMsg = (Label)userControl.FindControl("lblErrorMessage"); ClsEDIOnboardingPhase oRow = populateObj(userControl); oRow.idEDIOnboardingPhase = Convert.ToInt16((userControl.FindControl("lblOnboardingPhaseID") as Label).Text); oRow.SortValue = Convert.ToInt16((userControl.FindControl("txtSortValue") as RadTextBox).Text); string updateMsg = ""; if (IsValid) { if (oRow != null) { updateMsg = SrvEDIOnboardingPhase.InsertEDIOnboardingPhase(oRow); if (updateMsg == "") { pnlsuccess.Visible = true; lblSuccess.Text = "Successfully updated information for " + "'" + oRow.EDIOnboardingPhaseType + "'"; } else { errorMsg.Visible = true; errorMsg.Text = updateMsg; e.Canceled = true; } } } else { // display error errorMsg.Visible = true; errorMsg.Text = "Please enter Required fields"; e.Canceled = true; } } catch (Exception ex) { pnlDanger.Visible = true; lblDanger.Text = ex.Message.ToString(); e.Canceled = true; } }
protected void rgGrid_InsertCommand(object sender, GridCommandEventArgs e) { try { UserControl userControl = (UserControl)e.Item.FindControl(GridEditFormItem.EditFormUserControlID); Label errorMsg = (Label)userControl.FindControl("lblErrorMessage"); ClsEDIOnboardingPhase oRow = populateObj(userControl); string insertMsg = ""; if (IsValid) { if (oRow != null) { insertMsg = SrvEDIOnboardingPhase.InsertEDIOnboardingPhase(oRow); if (insertMsg == "") { pnlsuccess.Visible = true; lblSuccess.Text = "Successfully Added New Record " + oRow.EDIOnboardingPhaseType; } else { errorMsg.Visible = true; errorMsg.Text = insertMsg; e.Canceled = true; } } } else { // display error errorMsg.Visible = true; errorMsg.Text = "Please enter Required fields"; e.Canceled = true; } } catch (Exception ex) { pnlDanger.Visible = true; lblDanger.Text = ex.Message.ToString(); e.Canceled = true; } }