AdmMono/web/gui/configuraciones_comerciales/editarMotivoCancelacion.zul

52 lines
2.7 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="winEditarMotivoCancelacion"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk xmlns="http://www.zkoss.org/2005/zul">
<window id="winEditarMotivoCancelacion" border="normal"
apply="${editarMotivoCancelacionController}"
width="400px" height="457x" contentStyle="overflow:auto"
title="${c:l('editarMotivoCancelacionController.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('editarMotivoCancelacionController.btnApagar.tooltiptext')}"/>
<button id="btnSalvar" height="20"
image="/gui/img/save.png" width="35px"
tooltiptext="${c:l('editarMotivoCancelacionController.btnSalvar.tooltiptext')}"/>
<button id="btnFechar" height="20"
image="/gui/img/exit.png" width="35px"
onClick="winEditarMotivoCancelacion.detach()"
tooltiptext="${c:l('editarMotivoCancelacionController.btnFechar.tooltiptext')}"/>
</hbox>
</toolbar>
<grid fixedLayout="true">
<columns>
<column width="40%" />
<column width="60%" />
</columns>
<rows>
<row>
<label id="lbNome" value="${c:l('editarMotivoCancelacionController.lbNome.value')}"/>
<textbox id="txtNome" constraint="no empty" width="90%" maxlength="30"
value="@{winEditarMotivoCancelacion$composer.motivoCancelacion.descmotivo}"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"/>
</row>
<row>
<label value="${c:l('editarMotivoCancelacionController.lbtipomotivo.value')}"/>
<combobox id="cmbTipoMotivo" width="90%" use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
mold="rounded" buttonVisible="true" constraint="no empty"
selectedItem="@{winEditarMotivoCancelacion$composer.motivoCancelacion.tipomotivo}">
<comboitem value="B" label="BOLETOS" />
<comboitem value="C" label="CORRIDAS" />
</combobox>
</row>
</rows>
</grid>
</window>
</zk>