86 lines
2.8 KiB
XML
86 lines
2.8 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="winBusquedaMensaje"?>
|
|
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
|
|
|
<zk xmlns="http://www.zkoss.org/2005/zul">
|
|
<window id="winBusquedaMensaje"
|
|
title="${c:l('busquedaMensajeController.window.title')}"
|
|
apply="${busquedaMensajeController}" contentStyle="overflow:auto"
|
|
height="400px" width="600px" border="normal">
|
|
<toolbar>
|
|
<button id="btnRefresh" image="/gui/img/refresh.png"
|
|
width="35px"
|
|
tooltiptext="${c:l('busquedaTipoEventoExtraController.btnRefresh.tooltiptext')}" />
|
|
<separator orient="vertical" />
|
|
<button id="btnNovo" image="/gui/img/add.png" width="35px"
|
|
tooltiptext="${c:l('busquedaTipoEventoExtraController.btnNovo.tooltiptext')}" />
|
|
<separator orient="vertical" />
|
|
<button id="btnCerrar"
|
|
onClick="winBusquedaMensaje.detach()"
|
|
image="/gui/img/exit.png" width="35px"
|
|
tooltiptext="${c:l('busquedaTipoEventoExtraController.btnCerrar.tooltiptext')}" />
|
|
</toolbar>
|
|
|
|
<grid fixedLayout="true">
|
|
<columns>
|
|
<column width="30%" />
|
|
<column width="70%" />
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<label
|
|
value="${c:l('busquedaMensajeController.dataInicial.label')}" />
|
|
<datebox id="txtDataInicial" width="40%"
|
|
mold="rounded" format="dd/MM/yyyy"
|
|
maxlength="10" />
|
|
</row>
|
|
<row>
|
|
<label
|
|
value="${c:l('busquedaMensajeController.dataFinal.label')}" />
|
|
<datebox id="txtDataFinal" width="40%" mold="rounded"
|
|
format="dd/MM/yyyy"
|
|
maxlength="10" />
|
|
</row>
|
|
<row>
|
|
<label
|
|
value="${c:l('busquedaMensajeController.descricao.label')}" />
|
|
<textbox id="txtDescricao" width="282px"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
|
|
<toolbar>
|
|
<button id="btnPesquisa" image="/gui/img/find.png"
|
|
label="${c:l('busquedaTipoEventoExtraController.btnPesquisa.label')}" />
|
|
</toolbar>
|
|
|
|
<paging id="pagingMensaje" pageSize="15" />
|
|
<listbox id="mensajeList"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
|
vflex="true" multiple="false">
|
|
<listhead sizable="true">
|
|
|
|
<listheader id="lhId" width="10%"
|
|
image="/gui/img/builder.gif" sort="auto(mensajeId)"
|
|
label="${c:l('busquedaMensajeController.id.label')}" />
|
|
|
|
<listheader
|
|
image="/gui/img/builder.gif" sort="auto(fecIni)"
|
|
label="${c:l('busquedaMensajeController.dataInicial.label')}" />
|
|
|
|
<listheader
|
|
sort="auto(fecFin)"
|
|
label="${c:l('busquedaMensajeController.dataFinal.label')}" />
|
|
|
|
<listheader
|
|
sort="auto(descripcion)"
|
|
label="${c:l('busquedaMensajeController.descricao.label')}" />
|
|
|
|
</listhead>
|
|
</listbox>
|
|
</window>
|
|
</zk>
|