45 lines
2.3 KiB
XML
45 lines
2.3 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="winEditarMerchantBancario"?>
|
|
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
|
|
|
<zk xmlns="http://www.zkoss.org/2005/zul">
|
|
<window id="winEditarMerchantBancario" border="normal" apply="${editarMerchantBancarioController}"
|
|
width="500px" contentStyle="overflow:auto"
|
|
title="${c:l('editarMerchantBancarioController.window.title')}">
|
|
<toolbar>
|
|
<hbox spacing="5px" style="padding:1px" align="right">
|
|
<button id="btnSalvar" height="20"
|
|
image="/gui/img/save.png" width="35px"
|
|
tooltiptext="${c:l('editarMerchantBancarioController.btnSalvar.tooltiptext')}"/>
|
|
<button id="btnFechar" height="20"
|
|
image="/gui/img/exit.png" width="35px"
|
|
onClick="winEditarMerchantBancario.detach()"
|
|
tooltiptext="${c:l('editarMerchantBancarioController.btnFechar.tooltiptext')}"/>
|
|
</hbox>
|
|
</toolbar>
|
|
|
|
<grid fixedLayout="true">
|
|
<columns>
|
|
<column width="30%" />
|
|
<column width="70%" />
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<label value="${c:l('editarMerchantBancarioController.cvemerchant.label')}"/>
|
|
<textbox id="txtCVEmerchant" width="20%" constraint="no empty" maxlength="5"
|
|
value="@{winEditarMerchantBancario$composer.merchantBancario.cvemerchant}"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"/>
|
|
</row>
|
|
<row>
|
|
<label value="${c:l('editarMerchantBancarioController.descmerchant.label')}"/>
|
|
<textbox id="txtDescMerchant" width="90%" constraint="no empty" maxlength="30"
|
|
value="@{winEditarMerchantBancario$composer.merchantBancario.descmerchant}"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"/>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
</window>
|
|
</zk>
|