protected void Page_Load(object sender, EventArgs e)
    {
        try
        {
            iSelectData = (IQCRatio)ServiceAgent.getInstance().GetMaintainObjectByName<IWarranty>(WebConstant.MaintainQCRatioObject);

            if (!this.IsPostBack)
            {
                if (isPercentage)
                {
                    if (Convert.ToInt32(width) > 100)
                    {
                        drpMaintainFamily.Width = Unit.Percentage(100);
                    }
                    else
                    {
                        drpMaintainFamily.Width = Unit.Percentage(Convert.ToDouble(width));
                    }
                }
                else
                {
                    drpMaintainFamily.Width = Unit.Parse(width);
                }

                this.drpMaintainFamily.CssClass = cssClass;
                this.drpMaintainFamily.Enabled = enabled;

                if (enabled)
                {
                    initMaintainFamily();
                }
                else
                {
                    this.drpMaintainFamily.Items.Add(new ListItem("", ""));
                }
            }
        }
        catch (FisException ex)
        {
            showCmbErrorMessage(ex.mErrmsg);
        }
        catch (Exception ex)
        {
            showCmbErrorMessage(ex.Message);
        }
    }
Example #2
0
    protected void Page_Load(object sender, EventArgs e)
    {

        try
        {
            isCustomerLoad = false;
            isFamilyLoad = false;
            this.cmbCustomer.InnerDropDownList.Load += new EventHandler(cmbCustomer_Load);
            this.cmbMaintainFamily.InnerDropDownList.Load += new EventHandler(cmbFamily_Load);
            //this.cmbCustomer.InnerDropDownList.SelectedIndexChanged += new EventHandler(cmbCustomer_SelectedChange);
            iQCRatio = ServiceAgent.getInstance().GetMaintainObjectByName<IQCRatio>(WebConstant.MaintainQCRatioObject);
            iFamily = ServiceAgent.getInstance().GetMaintainObjectByName<IFamily2>(WebConstant.MaintainCommonObject);

            pmtMessage1 = this.GetLocalResourceObject(Pre + "_pmtMessage1").ToString();
            pmtMessage2 = this.GetLocalResourceObject(Pre + "_pmtMessage2").ToString();
            pmtMessage3 = this.GetLocalResourceObject(Pre + "_pmtMessage3").ToString();
            pmtMessage4 = this.GetLocalResourceObject(Pre + "_pmtMessage4").ToString();
            pmtMessage5 = this.GetLocalResourceObject(Pre + "_pmtMessage5").ToString();
            pmtMessage6 = this.GetLocalResourceObject(Pre + "_pmtMessage6").ToString();
            pmtMessage7 = this.GetLocalResourceObject(Pre + "_pmtMessage7").ToString();
            pmtMessage8 = this.GetLocalResourceObject(Pre + "_pmtMessage8").ToString();
            pmtMessage9 = this.GetLocalResourceObject(Pre + "_pmtMessage9").ToString();
            pmtMessage10 = this.GetLocalResourceObject(Pre + "_pmtMessage10").ToString();
            pmtMessage11 = this.GetLocalResourceObject(Pre + "_pmtMessage11").ToString();
            pmtMessage12 = this.GetLocalResourceObject(Pre + "_pmtMessage12").ToString();
            pmtMessage13 = this.GetLocalResourceObject(Pre + "_pmtMessage13").ToString();

            if (!this.IsPostBack)
            {
                userName = Master.userInfo.UserId; //UserInfo.UserId;
                this.HiddenUserName.Value = userName;
                initLabel();
                bindTable(null, DEFAULT_ROWS);
            }
            ScriptManager.RegisterStartupScript(this.updatePanelAll, typeof(System.Object), "InitControl", "initControls();", true);
        }
        catch (FisException ex)
        {
            showErrorMessage(ex.mErrmsg);
        }
        catch (Exception ex)
        {
            showErrorMessage(ex.Message);
        }
    }