protected void Page_Load(object sender, EventArgs e)
    {
        try
        {
            iKitLoc = ServiceAgent.getInstance().GetMaintainObjectByName<IFAFloatLocation>(WebConstant.FAFloatLocationObjet);

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

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

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

        try
        {
            isFamilyTopLoad = false;
            isFamilyLoad = false;
            isPdLineLoad = false;
            this.cmbMaintainFamilyTop.InnerDropDownList.Load += new EventHandler(cmbFamilyTop_Load);
            this.cmbMaintainFamily.InnerDropDownList.Load += new EventHandler(cmbFamily_Load);
            this.cmbMaintainPdLine.InnerDropDownList.Load += new EventHandler(cmbPdLine_Load);
            iFAKitLoc = ServiceAgent.getInstance().GetMaintainObjectByName<IFAFloatLocation>(WebConstant.FAFloatLocationObjet);

            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();
            if (!this.IsPostBack)
            {
                userName = Master.userInfo.UserId;
                this.HiddenUserName.Value = userName;
                initLabel();
                ShowListByFamilyTop();
            }
            ScriptManager.RegisterStartupScript(this.updatePanelAll, typeof(System.Object), "InitControl", "initControls();", true);
        }
        catch (FisException ex)
        {
            showErrorMessage(ex.mErrmsg);
        }
        catch (Exception ex)
        {
            showErrorMessage(ex.Message);
        }
    }