97 lines
3.3 KiB
XML
97 lines
3.3 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="winEditarConexionConf"?>
|
|
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
|
|
|
<zk>
|
|
<window id="winEditarConexionConf"
|
|
title="${c:l('editarConexionConfController.window.title')}"
|
|
apply="${editarConexionConfController}" contentStyle="overflow:auto"
|
|
width="650px" border="normal" height="300px">
|
|
<toolbar>
|
|
<hbox spacing="5px" style="padding:1px" align="right">
|
|
<button id="btnConfirmar" height="25px" width="35px"
|
|
image="/gui/img/ok.png"
|
|
tooltiptext="${c:l('editarConexionConfController.btnConfirmar.tooltiptext')}" />
|
|
<button id="btnFechar" height="25px" width="35px"
|
|
image="/gui/img/exit.png" onClick="winEditarConexionConf.detach()"
|
|
tooltiptext="${c:l('editarConexionController.btnFechar.tooltiptext')}" />
|
|
</hbox>
|
|
</toolbar>
|
|
|
|
<grid fixedLayout="true">
|
|
<columns>
|
|
<column width="20%" />
|
|
<column width="20%" />
|
|
<column width="15%" />
|
|
<column width="45%" />
|
|
</columns>
|
|
|
|
<rows>
|
|
|
|
<row spans="1,3">
|
|
|
|
<label
|
|
value="${c:l('editarConexionController.labelTiempoEspera.value')}" />
|
|
<hlayout>
|
|
<label
|
|
style="padding-right:36px; padding-left:5px"
|
|
value="${c:l('editarConexionController.labelTiempoMin.value')}" />
|
|
<intbox id="txtTiempoMin" constraint="no empty"
|
|
value="@{winEditarConexionConf$composer.conexionConf.tiempoMin}" />
|
|
<label
|
|
style="padding-left:55px; padding-right:36px"
|
|
value="${c:l('editarConexionController.labelTiempoMax.value')}" />
|
|
<intbox id="txtTiempoMax" constraint="no empty"
|
|
value="@{winEditarConexionConf$composer.conexionConf.tiempoMax}" />
|
|
</hlayout>
|
|
</row>
|
|
|
|
<row>
|
|
<label
|
|
value="${c:l('editarConexionController.label.desconto')}" />
|
|
<decimalbox id="txtValorDesconto" width="95%" constraint="no empty" />
|
|
|
|
<label
|
|
value="${c:l('editarConexionController.label.classeServicio')}" />
|
|
<combobox id="cmbClasseServicio"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
|
|
mold="rounded" buttonVisible="true" width="100%" constraint="no empty"/>
|
|
</row>
|
|
|
|
<row spans="1,3">
|
|
<label
|
|
value="${c:l('editarConexionController.label.descontoTasaEmbarque')}" />
|
|
<decimalbox id="txtValorDescontoTasaEmbarque" width="23%" />
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
|
|
<toolbar width="99.2%">
|
|
<button id="btnAddDesconto" image="/gui/img/add.png"
|
|
width="35px" height="25px"
|
|
tooltiptext="${c:l('editarConexionController.btnAddConexao.tooltiptext')}" />
|
|
|
|
<button id="btnRemoverDesconto" height="25px" width="35px"
|
|
image="/gui/img/remove.png"
|
|
tooltiptext="${c:l('editarConexionController.btnRemoverConexao.tooltiptext')}" />
|
|
</toolbar>
|
|
|
|
<listbox id="listBoxDesconto"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
|
multiple="false" vflex="true">
|
|
<listhead>
|
|
<listheader
|
|
label="${c:l('editarConexionController.label.desconto')}" />
|
|
|
|
<listheader
|
|
label="${c:l('editarConexionController.label.descontoTasaEmbarque')}" />
|
|
|
|
<listheader
|
|
label="${c:l('editarConexionController.label.classeServicio')}" />
|
|
</listhead>
|
|
</listbox>
|
|
</window>
|
|
</zk>
|