AdmMono/web/gui/tarifas/editarPrecoApanhe.zul

73 lines
3.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="winEditarPrecoApanhe"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk xmlns="http://www.zkoss.org/2005/zul">
<window id="winEditarPrecoApanhe" border="normal"
apply="${editarPrecoApanheController}"
width="600px" height="285px" contentStyle="overflow:auto"
title="${c:l('editarPrecoApanheController.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('editarPrecoApanheController.btnApagar.tooltiptext')}"/>
<button id="btnSalvar" height="20"
image="/gui/img/save.png" width="35px"
tooltiptext="${c:l('editarPrecoApanheController.btnSalvar.tooltiptext')}"/>
<button id="btnFechar" height="20"
image="/gui/img/exit.png" width="35px"
onClick="winEditarPrecoApanhe.detach()"
tooltiptext="${c:l('editarPrecoApanheController.btnFechar.tooltiptext')}"/>
</hbox>
</toolbar>
<grid fixedLayout="true">
<columns>
<column width="15%" />
<column width="85%" />
</columns>
<rows>
<row>
<label id="lbHotel" value="${c:l('editarPrecoApanheController.lhHotel.label')}"/>
<combobox id="cmbHotel"
width="90%"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
mold="rounded"
buttonVisible="true"
initialValue="@{winEditarPrecoApanhe$composer.precoApanhe.hotel}"
selectedItem="@{winEditarPrecoApanhe$composer.precoApanhe.hotel}"
model="@{winEditarPrecoApanhe$composer.lsHotel}" />
</row>
<row>
<label id="lbColonia" value="${c:l('editarPrecoApanheController.lhColonia.label')}"/>
<combobox id="cmbColonia"
width="90%"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxColonia"
initialValue="@{winEditarPrecoApanhe$composer.precoApanhe.colonia}"
selectedItem="@{winEditarPrecoApanhe$composer.precoApanhe.colonia}"
mold="rounded"
buttonVisible="true" />
</row>
<row>
<label id="lbCiudad" value="${c:l('editarPrecoApanheController.lhCiudad.label')}"/>
<combobox id="cmbCiudad"
width="90%"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxCiudad"
initialValue="@{winEditarPrecoApanhe$composer.precoApanhe.ciudad}"
selectedItem="@{winEditarPrecoApanhe$composer.precoApanhe.ciudad}"
mold="rounded"
buttonVisible="true" />
</row>
<row>
<label id="lbPreco" value="${c:l('editarPrecoApanheController.lhPreco.label')}"/>
<textbox id="txtPreco" constraint="no empty" width="20%" maxlength="10"
value="@{winEditarPrecoApanhe$composer.precoApanhe.preco}"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal"/>
</row>
</rows>
</grid>
</window>
</zk>