88 lines
3.4 KiB
XML
88 lines
3.4 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="winBusquedaEmpleado"?>
|
|
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
|
<zk xmlns="http://www.zkoss.org/2005/zul">
|
|
<window id="winBusquedaEmpleado"
|
|
title="${c:l('busquedaEmpleadoController.window.title')}"
|
|
apply="${busquedaEmpleadoController}" contentStyle="overflow:auto"
|
|
height="500px" width="950px" border="normal">
|
|
<toolbar>
|
|
<button id="btnRefresh" image="/gui/img/refresh.png"
|
|
width="35px"
|
|
tooltiptext="${c:l('busquedaEmpleadoController.btnRefresh.tooltiptext')}" />
|
|
<separator orient="vertical" />
|
|
<button id="btnNovo" image="/gui/img/add.png" width="35px"
|
|
tooltiptext="${c:l('busquedaEmpleadoController.btnNovo.tooltiptext')}" />
|
|
<separator orient="vertical" />
|
|
<button id="btnCerrar" onClick="winBusquedaEmpleado.detach()"
|
|
image="/gui/img/exit.png" width="35px"
|
|
tooltiptext="${c:l('busquedaEmpleadoController.btnCerrar.tooltiptext')}" />
|
|
</toolbar>
|
|
|
|
<grid fixedLayout="true">
|
|
<columns>
|
|
<column width="15%" />
|
|
<column width="35%" />
|
|
<column width="15%" />
|
|
<column width="35%" />
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<label
|
|
value="${c:l('busquedaEmpleadoController.cveEmpleado.label')}" />
|
|
<textbox id="txtCveEmpleado" width="90%"
|
|
maxlength="20"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
|
<label
|
|
value="${c:l('busquedaEmpleadoController.nombEmpleado.label')}" />
|
|
<textbox id="txtNombEmpleado" width="90%"
|
|
maxlength="60"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
|
</row>
|
|
<row>
|
|
<label
|
|
value="${c:l('busquedaEmpleadoController.nombpaterno.label')}" />
|
|
<textbox id="txtApelidoPaterno" width="90%"
|
|
maxlength="20"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
|
<label width="90%"
|
|
value="${c:l('busquedaEmpleadoController.nombmaterno.label')}" />
|
|
<textbox id="txtApelidoMaterno" width="90%"
|
|
maxlength="20"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
|
|
<toolbar>
|
|
<button id="btnPesquisa" image="/gui/img/find.png"
|
|
label="${c:l('busquedaEmpleadoController.btnPesquisa.label')}" />
|
|
</toolbar>
|
|
|
|
<paging id="pagingEmpleado" pageSize="20" />
|
|
<listbox id="empleadoList"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
|
multiple="false">
|
|
<listhead sizable="true">
|
|
<listheader image="/gui/img/create_doc.gif"
|
|
label="${c:l('busquedaEmpleadoController.cveEmpleado.label')}"
|
|
sort="auto(cveEmpleado)" />
|
|
<listheader image="/gui/img/create_doc.gif"
|
|
label="${c:l('busquedaEmpleadoController.nombEmpleado.label')}"
|
|
sort="auto(nombEmpleado)" />
|
|
<listheader image="/gui/img/create_doc.gif"
|
|
label="${c:l('busquedaEmpleadoController.nombpaterno.label')}"
|
|
sort="auto(nombPaterno)" />
|
|
<listheader image="/gui/img/create_doc.gif"
|
|
label="${c:l('busquedaEmpleadoController.nombmaterno.label')}"
|
|
sort="auto(nombMaterno)" />
|
|
<listheader image="/gui/img/create_doc.gif" width="10%"
|
|
label="${c:l('busquedaEmpleadoController.nombempresa.label')}"
|
|
sort="auto(empresa.nombempresa)" />
|
|
</listhead>
|
|
</listbox>
|
|
</window>
|
|
</zk>
|