public void Insert(object sender, EventArgs e) { OdjeljenjeForm odjeljenjeForm = new OdjeljenjeForm(Enums.FormEditMode.Insert, null); if (odjeljenjeForm.ShowDialogForm("Odjeljenje") == DialogResult.OK) { try { BusinessLogic.Odjeljenja.pSelectedIndex = UltraGridOdjeljenja.ActiveRow.Index; } catch { } LoadGridOdjeljenja(); } }
public void Copy(object sender, EventArgs e) { if (this.UltraGridOdjeljenja.ActiveRow != null) { int id = Convert.ToInt32(this.UltraGridOdjeljenja.ActiveRow.Cells["ID"].Value); OdjeljenjeForm odjeljenjeForm = new OdjeljenjeForm(Enums.FormEditMode.Copy, id); if (odjeljenjeForm.ShowDialogForm("Odjeljenje") == DialogResult.OK) { BusinessLogic.Odjeljenja.pSelectedIndex = UltraGridOdjeljenja.ActiveRow.Index; LoadGridOdjeljenja(); } } }