Beispiel #1
0
        public static void OnGenerateSend(PageContext pageContext,
                                          Func<int[], BatchExecutionResults2> doGenerateSend, string entityName)
        {
            try
            {
                BatchExecutionResults2 batchExecutionResults = doGenerateSend(pageContext.GridView.GetSelectedIds());

                if (batchExecutionResults.SuccessCount > 0)
                    pageContext.GridView.DataBind();
                pageContext.GridView.ClearSelection();
                pageContext.ErrorLabel.Text = Utility.FormatBatchExecutionResults(
                                                            batchExecutionResults,
                                                            string.Format("No {0}s were sent.", entityName),
                                                            string.Format("{{0}} {0} was successfully sent.", entityName),
                                                            string.Format("{{0}} {0}s were successfully sent.", entityName),
                                                            string.Format("{{0}} error occured while sending {0}s:", entityName),
                                                            string.Format("{{0}} errors occured while sending {0}s:", entityName));
            }
            catch (Exception ex)
            {
                pageContext.ErrorLabel.Text = Utility.GetCompleteExceptionMessage(ex);
            }

            Utility.ScrollToBottom(pageContext.ScrollToBottomHiddenField);
        }
Beispiel #2
0
        public static void OnCheckedChanged(PageContext pageContext, CheckBox checkBox,
                                            Action<int, bool> saveValue, Func<bool, string> getConfirmMessage)
        {
            try
            {
                int personKey = (int)pageContext.GridView.DataKeys[((GridViewRow)checkBox.NamingContainer).RowIndex].Value;
                saveValue(personKey, checkBox.Checked);
                pageContext.GridView.DataBind();
                pageContext.ErrorLabel.Text = getConfirmMessage(checkBox.Checked);
            }
            catch (Exception ex)
            {
                pageContext.GridView.DataBind();
                pageContext.ErrorLabel.Text = Utility.GetCompleteExceptionMessage(ex);
            }

            Utility.ScrollToBottom(pageContext.ScrollToBottomHiddenField);
        }
Beispiel #3
0
        public static void OnLinkButtonClick(PageContext pageContext, LinkButton linkButton,
                                             Action<int> doAction, bool dataBindOnSuccess, bool dataBindOnError, string afterMessage)
        {
            try
            {
                int personKey = int.Parse(linkButton.CommandArgument);
                doAction(personKey);
                if (dataBindOnSuccess)
                    pageContext.GridView.DataBind();
                pageContext.ErrorLabel.Text = afterMessage;
            }
            catch (Exception ex)
            {
                if (dataBindOnError)
                    pageContext.GridView.DataBind();
                pageContext.ErrorLabel.Text = Utility.GetCompleteExceptionMessage(ex);
            }

            Utility.ScrollToBottom(pageContext.ScrollToBottomHiddenField);
        }
Beispiel #4
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (CommonAdapter.GetCurrentLoginType() == LoginTypes.RemisierEmployee)
                throw new SecurityLayerException();

            if (!IsPostBack)
            {
                ((TotalGiroClient)Master).HeaderText = "Client Logins";

                gvContacts.Sort("ShortName", SortDirection.Ascending);

                ctlAccountFinder.Focus();
            }

            gvContacts.Columns[0].ItemStyle.BackColor = gvContacts.Columns[1].ItemStyle.BackColor;
            elbErrorMessage.Text = "";
            Utility.EnableScrollToBottom(this, hdnScrollToBottom);
            PageContext = new PageContext(gvContacts, elbErrorMessage, hdnScrollToBottom);
        }