AdmMono/VentaBoletosAdm/web/gui/tarifas/editarSeguradoraEmpresa.zul

51 lines
2.6 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?page contentType="text/html;charset=UTF-8"?>
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" arg0="winEditarSeguradoraEmpresa"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk xmlns="http://www.zkoss.org/2005/zul">
<window id="winEditarSeguradoraEmpresa" border="normal"
apply="${editarSeguradoraEmpresaController}"
width="550px" height="500px" contentStyle="overflow:auto"
title="${c:l('editarSeguradoraEmpresaController.window.title')}">
<toolbar>
<hbox spacing="5px" style="padding:1px" align="right">
<button id="btnApagar" height="20"
image="/gui/img/remove.png" width="35px"
tooltiptext="${c:l('editarSeguradoraEmpresaController.btnApagar.tooltiptext')}"/>
<button id="btnSalvar" height="20"
image="/gui/img/save.png" width="35px"
tooltiptext="${c:l('editarSeguradoraEmpresaController.btnSalvar.tooltiptext')}"/>
<button id="btnFechar" height="20"
image="/gui/img/exit.png" width="35px"
onClick="winEditarSeguradoraEmpresa.detach()"
tooltiptext="${c:l('editarSeguradoraEmpresaController.btnFechar.tooltiptext')}"/>
</hbox>
</toolbar>
<grid fixedLayout="true">
<columns>
<column width="40%" />
<column width="60%" />
</columns>
<rows>
<row>
<label value="${c:l('editarSeguradoraEmpresaController.empresa')}"/>
<combobox id="cmbEmpresa" constraint="no empty"
mold="rounded" buttonVisible="true" width="90%"
model="@{winEditarSeguradoraEmpresa$composer.lsEmpresa}"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
selectedItem="@{winEditarSeguradoraEmpresa$composer.seguradoraEmpresa.empresa}"/>
</row>
<row>
<label value="${c:l('editarSeguradoraEmpresaController.serie')}"/>
<textbox id="txtSerie"
constraint="no empty" maxlength="4"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"
value="@{winEditarSeguradoraEmpresa$composer.seguradoraEmpresa.serie}" />
</row>
</rows>
</grid>
</window>
</zk>