Пример #1
0
        private void dataGrid_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            try
            {
                //  var d = (DataGridView)sender;
                //  var df = d.SelectedCells[0].Value.ToString();
                //  if(df == "Edit") (df == "Delete")

                if (!LoggedInUser.IsAdmin)
                {
                    Base.ShowError("Access Denied", "You do not have the required permission");
                    return;
                }

                //edit column
                if (e.ColumnIndex == 0)
                {
                    var id   = dataGrid.Rows[e.RowIndex].Cells["id"].Value.ToString();
                    var item = _repo.GetSessionSemester(id);
                    if (item != null)
                    {
                        var updateForm = new FrmSession(item.Id);
                        updateForm.ShowDialog();
                        LoadData();
                    }
                }
                LoadData();

                //delete column
                if (e.ColumnIndex == 1)
                {
                    var result = Base.ShowDialog(MessageBoxButtons.YesNo, "Confirm Delete", "Are you sure you want to delete this record?");
                    if (result == DialogResult.Yes)
                    {
                        var id       = dataGrid.Rows[e.RowIndex].Cells["id"].Value.ToString();
                        var response = _repo.DeleteSessionSemester(id);

                        if (response == string.Empty)
                        {
                            Base.ShowInfo("Success", "Session/Semester deleted successfully");
                            LoadData();
                        }

                        else
                        {
                            Base.ShowError("Failed", response);
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                Base.ShowError("Error occured", ex.Message);
            }
        }
Пример #2
0
        private void grdData_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            try
            {
                var    d  = (DataGridView)sender;
                string df = d.SelectedCells[0].Value.ToString();
                //edit column
                if (df == "Edit")
                {
                    int id  = int.Parse(grdData.Rows[e.RowIndex].Cells["id"].Value.ToString());
                    var sem = _semesterRepo.GetSessionSemester(id);
                    if (sem != null)
                    {
                        var updateForm = new SessionSemesterForm(sem);
                        updateForm.ShowDialog();
                        //grdData.Refresh();
                        LoadSessionSemesters();
                    }
                }

                //delete column
                if (df == "Delete")      //(e.ColumnIndex == 1)
                {
                    DialogResult result1 = MessageBox.Show("Are you sure you want to delete this record?",
                                                           "Confirm Delete",
                                                           MessageBoxButtons.YesNo);
                    if (result1 == DialogResult.Yes)
                    {
                        int    id       = int.Parse(grdData.Rows[e.RowIndex].Cells["id"].Value.ToString());
                        string response = _semesterRepo.DeleteSessionSemester(id);
                        if (response == string.Empty)
                        {
                            MessageBox.Show(this, "Session/Semester deleted successfully", "Success", MessageBoxButtons.OK,
                                            MessageBoxIcon.Information);
                        }
                        else
                        {
                            MessageBox.Show(this, response, "Failed", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                        }

                        LoadSessionSemesters();
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(this, ex.Message, "Error occured", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }