예제 #1
0
 protected virtual void addJsCodigo(JavaScriptTag tagJs)
 {
     if (this.getBooJsAutoInicializavel())
     {
         tagJs.addJsCodigo(string.Format(this.getStrJsNamespace() + ".{0}.i.iniciar();", this.GetType().Name));
     }
 }
예제 #2
0
        private JavaScriptTag getTagJs()
        {
            var tagJsResultado = new JavaScriptTag(string.Empty, 100);

            tagJsResultado.pag = this;

            return(tagJsResultado);
        }
예제 #3
0
 protected virtual void addLayoutFixo(JavaScriptTag tagJs)
 {
     // Revisar a real necessidade de enviar esses layouts sempre.
     tagJs.addLayoutFixo(typeof(Mensagem));
     tagJs.addLayoutFixo(typeof(MenuContexto));
     tagJs.addLayoutFixo(typeof(MenuContextoItem));
     tagJs.addLayoutFixo(typeof(Notificacao));
     tagJs.addLayoutFixo(typeof(TagCard));
 }
예제 #4
0
파일: JnlCadastro.cs 프로젝트: digovc/Web
        protected override void inicializar()
        {
            base.inicializar();

            this.inicializarCampos();

            this.strId     = this.GetType().Name;
            this.strTitulo = this.tbl.strNomeExibicao;

            this.addAtt("src_js", JavaScriptTag.getSrc(this.GetType()));

            this.carregarDados();
        }
예제 #5
0
 protected virtual void addConstante(JavaScriptTag tagJs)
 {
     tagJs.addConstante(AppWebBase.STR_CONSTANTE_DESENVOLVIMENTO, AppWebBase.i.booDesenvolvimento);
 }
예제 #6
0
 protected void addJs(JavaScriptTag tagJs)
 {
     this.tagJs.setPai(this.tagHead);
 }
예제 #7
0
        protected override void addJsCodigo(JavaScriptTag tagJs)
        {
            base.addJsCodigo(tagJs);

            tagJs.addJsCodigo(string.Format("RealLifeUi.{0}.i.iniciar();", this.GetType().Name));
        }
예제 #8
0
        protected override void addLayoutFixo(JavaScriptTag tagJs)
        {
            base.addLayoutFixo(tagJs);

            tagJs.addLayoutFixo(typeof(TreeViewNode));
        }
예제 #9
0
        protected override void addConstante(JavaScriptTag tagJs)
        {
            base.addConstante(tagJs);

            tagJs.addConstante(AppWebBase.STR_CONSTANTE_NAMESPACE_PROJETO, AppWebBase.i.GetType().Namespace);
        }
        protected override void addConstante(JavaScriptTag tagJs)
        {
            base.addConstante(tagJs);

            tagJs.addConstante((nameof(SrvAjaxDbePicPay) + "_porta"), SrvAjaxDbePicPay.i.intPorta);
        }
예제 #11
0
        protected override void addLayoutFixo(JavaScriptTag tagJs)
        {
            base.addLayoutFixo(tagJs);

            tagJs.addLayoutFixo(typeof(IndiceItem));
        }
예제 #12
0
파일: BotaoCircular.cs 프로젝트: digovc/Web
 protected override void addJs(JavaScriptTag js)
 {
     base.addJs(js);
 }
예제 #13
0
        protected override void addLayoutFixo(JavaScriptTag tagJs)
        {
            base.addLayoutFixo(tagJs);

            tagJs.addLayoutFixo(typeof(BotaoActionBar));
        }
예제 #14
0
        protected override void addConstante(JavaScriptTag tagJs)
        {
            base.addConstante(tagJs);

            tagJs.addConstante((typeof(SrvAjaxDocumentacao).Name + "_intPorta"), this.getIntSrvAjaxDocumentacaoPorta());
        }
예제 #15
0
        protected override void addConstante(JavaScriptTag tagJs)
        {
            base.addConstante(tagJs);

            SrvWsDrive.i.addConstante(tagJs);
        }
예제 #16
0
파일: DivGridLinha.cs 프로젝트: digovc/Web
        protected override void addLayoutFixo(JavaScriptTag tagJs)
        {
            base.addLayoutFixo(tagJs);

            tagJs.addLayoutFixo(typeof(DivGridColunaLinha));
        }
예제 #17
0
파일: SrvWsDrive.cs 프로젝트: Bruske/drive
 internal void addConstante(JavaScriptTag tagJs)
 {
     tagJs.addConstante((this.GetType().Name + "_intPorta"), this.intPorta);
     tagJs.addConstante((this.GetType().Name + "_strNome"), this.strNome);
 }