示例#1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            this.DimensoesTabela();

            if (!IsPostBack)
            {
                this.PopulaTurma(this.Page.Title.ToString());

                this.DrpDwnLstTurma.TabIndex  = TabIndex;
                this.DrpDwnLstEstado.TabIndex = IntUtils.ToInt16(TabIndex + 1);

                this.HorizontalVertical();

                this.Obrigatoriedade();
            }
        }
示例#2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                this.PopulaTurma(this.Page.Title.ToString());
                this.DrpDwnLstEscritorioRegional.Visible = EscritorioRegional;
                this.DrpDwnLstRegiao.Visible             = Regiao;
                this.DrpDwnLstBairro.Visible             = Bairro;

                this.DrpDwnLstTurma.TabIndex = TabIndex++;

                this.DrpDwnLstEstado.TabIndex             = IntUtils.ToInt16(TabIndex++);
                this.DrpDwnLstEscritorioRegional.TabIndex = IntUtils.ToInt16(EscritorioRegional ? TabIndex++ : 99);
                this.DrpDwnLstRegiao.TabIndex             = IntUtils.ToInt16(Regiao ? TabIndex++ : 99);
                this.DrpDwnLstCidade.TabIndex             = IntUtils.ToInt16(TabIndex++);
                this.DrpDwnLstBairro.TabIndex             = IntUtils.ToInt16(Bairro ? TabIndex++ : 99);

                this.Obrigatoriedade();
            }

            // this.tdDdlEstado.Width = "100";// DoubleUtils.ToString(this.WidthCampo);
        }