nosi.webapps.igrp.pages.editartransacao.EditarTransacaoView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of igrp-core Show documentation
Show all versions of igrp-core Show documentation
IGRP Framework is a powerful and highly customizable platform developed by the Operational Nucleus for the Information Society (NOSi) to create web applications, it provides out of box, several modules to make easy to create stand-alone, production-grade web applications: authentication and access-control, business processes automation, reporting, page builder with automatic code generation and incorporation of the Once-Only-Principle, written in Java. IGRP Framework WAR - Contains some keys resources that give UI to IGRP Framework and others supports files.
package nosi.webapps.igrp.pages.editartransacao;
import static nosi.core.i18n.Translator.gt;
import nosi.core.gui.components.*;
import nosi.core.gui.fields.*;
import nosi.core.webapp.Model;
import nosi.core.webapp.View;
public class EditarTransacaoView extends View {
public Field sectionheader_1_text;
public Field aplicacao;
public Field descricao;
public Field codigo;
public Field status;
public Field status_check;
public Field id;
public IGRPSectionHeader sectionheader_1;
public IGRPForm form_1;
public IGRPButton btn_gravar;
public EditarTransacaoView(){
this.setPageTitle("Editar Transacao");
sectionheader_1 = new IGRPSectionHeader("sectionheader_1","");
form_1 = new IGRPForm("form_1","");
sectionheader_1_text = new TextField(model,"sectionheader_1_text");
sectionheader_1_text.setLabel(gt(""));
sectionheader_1_text.setValue(gt("Editar transação"));
sectionheader_1_text.propertie().add("type","text").add("name","p_sectionheader_1_text").add("maxlength","4000");
aplicacao = new ListField(model,"aplicacao");
aplicacao.setLabel(gt("Aplicação"));
aplicacao.propertie().add("name","p_aplicacao").add("type","select").add("multiple","false").add("tags","false").add("domain","").add("maxlength","250").add("required","true").add("disabled","false").add("java-type","");
descricao = new TextField(model,"descricao");
descricao.setLabel(gt("Nome"));
descricao.propertie().add("name","p_descricao").add("type","text").add("maxlength","150").add("required","true").add("readonly","false").add("disabled","false").add("placeholder",gt("")).add("desclabel","false");
codigo = new TextField(model,"codigo");
codigo.setLabel(gt("Código"));
codigo.propertie().add("name","p_codigo").add("type","text").add("maxlength","250").add("required","true").add("readonly","true").add("disabled","false").add("placeholder",gt("")).add("desclabel","false");
status = new CheckBoxField(model,"status");
status.setLabel(gt("Ativo?"));
status.propertie().add("name","p_status").add("type","checkbox").add("maxlength","30").add("required","false").add("readonly","false").add("disabled","false").add("switch","true").add("java-type","int").add("check","true");
id = new HiddenField(model,"id");
id.setLabel(gt(""));
id.propertie().add("name","p_id").add("type","hidden").add("maxlength","30").add("java-type","int").add("tag","id");
btn_gravar = new IGRPButton("Gravar","igrp","EditarTransacao","gravar","submit","primary|fa-save","","");
btn_gravar.propertie.add("id","button_46b5_1320").add("type","form").add("class","primary").add("rel","gravar").add("refresh_components","");
}
@Override
public void render(){
sectionheader_1.addField(sectionheader_1_text);
form_1.addField(aplicacao);
form_1.addField(descricao);
form_1.addField(codigo);
form_1.addField(status);
form_1.addField(id);
form_1.addButton(btn_gravar);
this.addToPage(sectionheader_1);
this.addToPage(form_1);
}
@Override
public void setModel(Model model) {
aplicacao.setValue(model);
descricao.setValue(model);
codigo.setValue(model);
status.setValue(model);
id.setValue(model);
}
}