AdmMono/web/gui/impressaofiscal/editarTotnaofiscalEmpresa.zul

76 lines
3.5 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?page title="TotnaofiscalEmpresa" contentType="text/html;charset=UTF-8"?>
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" arg0="winEditarTotnaofiscalEmpresa"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk>
<window id="winEditarTotnaofiscalEmpresa" title="${c:l('editarTotnaofiscalEmpresaController.window.title')}"
apply="${editarTotnaofiscalEmpresaController}" contentStyle="overflow:auto"
height="200px" width="450px" border="normal" >
<toolbar>
<hbox spacing="5px" style="padding:1px" align="right">
<button id="btnApagar" height="20"
image="/gui/img/remove.png" width="35px"
tooltiptext="${c:l('editarTotnaofiscalEmpresaController.btnApagar.tooltiptext')}" disabled="false"/>
<button id="btnSalvar" height="20"
image="/gui/img/save.png" width="35px"
tooltiptext="${c:l('editarTotnaofiscalEmpresaController.btnSalvar.tooltiptext')}" disabled="false"/>
<button id="btnFechar" height="20"
image="/gui/img/exit.png" width="35px"
onClick="winEditarTotnaofiscalEmpresa.detach()"
tooltiptext="${c:l('editarTotnaofiscalEmpresaController.btnFechar.tooltiptext')}" disabled="false"/>
</hbox>
</toolbar>
<grid fixedLayout="true">
<columns>
<column width="40%" />
<column width="60%" />
</columns>
<rows>
<row>
<label
value="${c:l('busquedaTotnaofiscalEmpresaController.empresa.label')}" />
<combobox id="cmbEmpresa"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
width="70%" mold="rounded" buttonVisible="true"
model="@{winEditarTotnaofiscalEmpresa$composer.lsEmpresas}"
selectedItem="@{winEditarTotnaofiscalEmpresa$composer.totnaofiscalEmpresa.empresa}"
constraint="no empty" />
</row>
<row>
<label value="${c:l('busquedaTotnaofiscalEmpresaController.tipototalizador.label')}"/>
<combobox id="cmbTipototalizador" use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
mold="rounded" buttonVisible="true" width="70%"
model="@{winEditarTotnaofiscalEmpresa$composer.lsTipototalizador}"
selectedItem="@{winEditarTotnaofiscalEmpresa$composer.totnaofiscalEmpresa.tipototalizador}"
constraint="no empty"/>
</row>
<row>
<label
value="${c:l('busquedaTotnaofiscalEmpresaController.tipoeventoextra.label')}" />
<combobox id="cmbTipoEventoExtra"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
mold="rounded" buttonVisible="true" width="70%"
model="@{winEditarTotnaofiscalEmpresa$composer.lsTipoEventoExtra}"
selectedItem="@{winEditarTotnaofiscalEmpresa$composer.totnaofiscalEmpresa.tipoeventoextra}">
<comboitem label=" " value=" "/>
</combobox>
</row>
<row>
<label value="${c:l('busquedaTotnaofiscalEmpresaController.descricao.label')}" />
<textbox id="txtDescricao" width="90%"
maxlength="20"
value="@{winEditarTotnaofiscalEmpresa$composer.totnaofiscalEmpresa.descricao}"
constraint="no empty"/>
</row>
</rows>
</grid>
</window>
</zk>