100 lines
3.7 KiB
XML
100 lines
3.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="winBusquedaEstacion"?>
|
|
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
|
|
|
<zk xmlns="http://www.zkoss.org/2005/zul">
|
|
<window id="winBusquedaEstacion"
|
|
title="${c:l('busquedaEstacionController.window.title')}"
|
|
apply="${busquedaEstacionController}" contentStyle="overflow:auto"
|
|
height="500px" width="1100px" border="normal">
|
|
|
|
<toolbar>
|
|
<button id="btnRefresh" image="/gui/img/refresh.png"
|
|
width="35px"
|
|
tooltiptext="${c:l('busquedaEstacionController.btnRefresh.tooltiptext')}" />
|
|
<separator orient="vertical" />
|
|
<button id="btnNovo" image="/gui/img/add.png" width="35px"
|
|
tooltiptext="${c:l('busquedaEstacionController.btnNovo.tooltiptext')}" />
|
|
<separator orient="vertical" />
|
|
<button id="btnCerrar"
|
|
onClick="winBusquedaEstacion.detach()" image="/gui/img/exit.png"
|
|
width="35px"
|
|
tooltiptext="${c:l('busquedaEstacionController.btnCerrar.tooltiptext')}" />
|
|
</toolbar>
|
|
|
|
<grid fixedLayout="true">
|
|
<columns>
|
|
<column width="20%" />
|
|
<column width="80%" />
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<label
|
|
value="${c:l('busquedaEstacionController.lhDescEstacion.label')}" />
|
|
<textbox id="txtDescEstacion" width="300px" use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"
|
|
maxlength="60" />
|
|
</row>
|
|
<row>
|
|
<label
|
|
value="${c:l('busquedaEstacionController.lhNumCaja.label')}" />
|
|
<longbox id="txtNumCaja" width="300px"
|
|
maxlength="10" />
|
|
</row>
|
|
<row>
|
|
<label
|
|
value="${c:l('busquedaEstacionController.lhPuntoVenta.label')}" />
|
|
<combobox id="cmbPuntoVenta"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxPuntoVenta"
|
|
mold="rounded" buttonVisible="true" width="300px" />
|
|
</row>
|
|
|
|
<row>
|
|
<label
|
|
value="${c:l('busquedaEstacionController.lhMAC.label')}" />
|
|
<textbox id="txtMAC" width="300px" maxlength="17" />
|
|
</row>
|
|
<row>
|
|
<label
|
|
value="${c:l('busquedaEstacionController.lhIMEI.label')}" />
|
|
<textbox id="txtIMEI" width="300px" maxlength="17" />
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
|
|
<toolbar>
|
|
<button id="btnPesquisa" image="/gui/img/find.png"
|
|
label="${c:l('busquedaEstacionController.btnPesquisa.label')}" />
|
|
</toolbar>
|
|
|
|
<paging id="pagingEstacion" pageSize="15" />
|
|
<listbox id="estacionList"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
|
multiple="false" height="55%">
|
|
<listhead sizable="true">
|
|
<listheader image="/gui/img/create_doc.gif" width="5%"
|
|
label="${c:l('busquedaEstacionController.ID.label')}"
|
|
sort="auto(estacionId)" />
|
|
<listheader image="/gui/img/create_doc.gif"
|
|
label="${c:l('busquedaEstacionController.lhDescEstacion.label')}"
|
|
sort="auto(descestacion)" />
|
|
<listheader image="/gui/img/create_doc.gif" width="15%"
|
|
label="${c:l('busquedaEstacionController.lhDescMac.label')}"
|
|
sort="auto(descmac)" />
|
|
<listheader image="/gui/img/create_doc.gif" width="10%"
|
|
label="${c:l('busquedaEstacionController.lhNumCaja.label')}"
|
|
sort="auto(numcaja)" />
|
|
<listheader image="/gui/img/create_doc.gif"
|
|
label="${c:l('busquedaEstacionController.nomeImpressoraRelatorio.label')}"
|
|
sort="auto(nomeImpressoraRelatorio)" />
|
|
<listheader image="/gui/img/create_doc.gif"
|
|
label="${c:l('busquedaEstacionController.lhPuntoVenta.label')}"
|
|
sort="auto(puntoVenta.nombpuntoventa)" />
|
|
<listheader image="/gui/img/create_doc.gif"
|
|
label="${c:l('busquedaEstacionController.lhImei.label')}"
|
|
sort="auto(imei)" />
|
|
</listhead>
|
|
</listbox>
|
|
</window>
|
|
</zk> |