Пример #1
0
        /// <summary>
        /// Update Database Make data as Obsoluted
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void IsObsolete_CheckedChanged(Object sender, EventArgs e)
        {
            string message = string.Empty;

            try
            {
                CheckBox       chk               = (CheckBox)sender;
                GridViewRow    gr                = (GridViewRow)chk.Parent.Parent;
                string         LivPlanItemID     = ((Literal)gr.FindControl("litLivPlanItemID")).Text;
                LivPlanItemBLL LivPlanItemBLLobj = new LivPlanItemBLL();
                message = LivPlanItemBLLobj.ObsoleteLivPlanItem(Convert.ToInt32(LivPlanItemID), Convert.ToString(chk.Checked));
                if (string.IsNullOrEmpty(message) || message == "" || message == "null")
                {
                    message = "Data updated successfully";
                }
                BindGrid(false, true);
                if (message != "")
                {
                    ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Added", "alert('" + message + "');", true);
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Пример #2
0
        /// <summary>
        /// Set Grid Data source
        /// </summary>
        /// <param name="addRow"></param>
        /// <param name="deleteRow"></param>
        private void BindGrid(bool addRow, bool deleteRow)
        {
            LivPlanItemBLL LivPlanItemBLLobj = new LivPlanItemBLL();

            grdLivPlanItem.DataSource = LivPlanItemBLLobj.GETALLLivPlanItem();
            grdLivPlanItem.DataBind();
        }
Пример #3
0
        /// <summary>
        /// Set edit mode for edit comand
        /// Delete data from the database for delete comand
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void grdLivPlanItem_RowCommand(object sender, GridViewCommandEventArgs e)
        {
            string message = string.Empty;

            if (e.CommandName == "EditRow")
            {
                ViewState["LivPlanItemID"] = e.CommandArgument;
                int concrnID = Convert.ToInt32(ViewState["LivPlanItemID"]);
                GetLivPlanItemDetails(concrnID);
                SetUpdateMode(true);
                ScriptManager.RegisterStartupScript(this, this.GetType(), "Added", "setDirty();", true);
            }
            else if (e.CommandName == "DeleteRow")
            {
                LivPlanItemBLL LivPlanItemBLLobj = new LivPlanItemBLL();
                message = LivPlanItemBLLobj.DeleteLivPlanItem(Convert.ToInt32(e.CommandArgument));
                if (string.IsNullOrEmpty(message) || message == "" || message == "null")
                {
                    message = "Data Deleted successfully";
                }

                clear();
                SetUpdateMode(false);
                BindGrid(false, true);
            }
            if (message != "")
            {
                ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Added", "alert('" + message + "');", true);
            }
        }
Пример #4
0
        /// <summary>
        /// get the Grid value into textBox
        /// </summary>
        private void GetLivPlanItemDetails(int LivPlanItemID)
        {
            LivPlanItemBLL LivPlanItemBLLobj = new LivPlanItemBLL();
            //int LivPlanItemID = 0;

            //if (ViewState["LivPlanItemID"] != null)
            //    LivPlanItemID = Convert.ToInt32(ViewState["LivPlanItemID"]);

            LivPlanItemBO LivPlanItemObj = new LivPlanItemBO();

            LivPlanItemObj = LivPlanItemBLLobj.GetLivPlanItemById(LivPlanItemID);

            LivPlanItemTextBox.Text   = LivPlanItemObj.LivPlanItemName;
            LivPlanItemIDTextBox.Text = LivPlanItemObj.LivPlanItemID.ToString();
            //int LivPlanItemID_test = Convert.ToInt32(LivPlanItemObj.LivPlanItemID);
        }
Пример #5
0
        /// <summary>
        /// save data to database
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void SaveButton_Click(object sender, EventArgs e)
        {
            // int count = 0;
            string AlertMessage = string.Empty;
            string message      = string.Empty;

            if (LivPlanItemIDTextBox.Text.ToString().Trim() == string.Empty)
            {
                LivPlanItemBLL LivPlanItemBLLOBJ = new LivPlanItemBLL();

                try
                {
                    string        uID            = Session["USER_ID"].ToString();
                    LivPlanItemBO objLivPlanItem = new LivPlanItemBO();
                    objLivPlanItem.LivPlanItemName = LivPlanItemTextBox.Text.ToString().Trim();;
                    objLivPlanItem.UserID          = Convert.ToInt32(uID);

                    LivPlanItemBLL LivPlanItemBLLobj = new LivPlanItemBLL();
                    message = LivPlanItemBLLobj.Insert(objLivPlanItem);

                    AlertMessage = "alert('" + message + "');";

                    if (string.IsNullOrEmpty(message) || message == "" || message == "null")
                    {
                        message = "Data saved successfully";
                        clear();
                        // ClearDetails();
                        BindGrid(true, true);
                    }
                }
                catch (Exception ex)
                {
                    throw ex;
                }

                finally
                {
                    LivPlanItemBLLOBJ = null;
                }
            }
            //edit the data in the textbox exiting in the Grid
            else if (LivPlanItemIDTextBox.Text.ToString().Trim() != string.Empty)
            {
                LivPlanItemBLL LivPlanItemBLLOBJ = new LivPlanItemBLL();

                try
                {
                    string        uID            = Session["USER_ID"].ToString();
                    LivPlanItemBO objLivPlanItem = new LivPlanItemBO();
                    objLivPlanItem.LivPlanItemName = LivPlanItemTextBox.Text.ToString().Trim();
                    objLivPlanItem.LivPlanItemID   = Convert.ToInt32(LivPlanItemIDTextBox.Text.ToString().Trim());
                    objLivPlanItem.UserID          = Convert.ToInt32(uID);

                    LivPlanItemBLL LivPlanItemBLLobj = new LivPlanItemBLL();
                    message = LivPlanItemBLLobj.EDITLivPlanItem(objLivPlanItem);

                    if (string.IsNullOrEmpty(message) || message == "" || message == "null")
                    {
                        message = "Data updated successfully";
                        // ClearDetails();
                        clear();
                        SetUpdateMode(false);
                        BindGrid(true, true);
                    }
                }
                catch (Exception ex)
                {
                    throw ex;
                }

                finally
                {
                    LivPlanItemBLLOBJ = null;
                }
            }

            AlertMessage = "alert('" + message + "');";
            ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Added", AlertMessage, true);
        }