AdmMono/web/version.zul

37 lines
1.1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?page title="Login"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk xmlns="http://www.zkoss.org/2005/zul"
xmlns:h="http://www.w3.org/1999/xhtml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd">
<window id="winVersao" title="${c:l('winVersao.title')}"
border="normal" width="400px" position="center" mode="overlapped">
<attribute name="onCreate">
lblVersion.setValue(com.rjconsultores.ventaboletos.web.utilerias.Version.readVersion());
</attribute>
<toolbar>
<button id="btnCerrar" onClick="winVersao.detach()"
image="/gui/img/exit.png" width="35px"
tooltiptext="${c:l('busquedaEmpresaController.btnCerrar.tooltiptext')}" />
</toolbar>
<grid fixedLayout="true">
<columns>
<column width="15%" />
<column width="85%" />
</columns>
<rows>
<row>
<label value="${c:l('indexController.mniVersion.label')}" />
<label id="lblVersion"/>
</row>
</rows>
</grid>
</window>
</zk>