You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
<?page title="${labels.BuildingsFormTitle}" contentType="text/html;charset=UTF-8"?>
|
|
<zk>
|
|
<window id="editWin" closable="true" border="normal" position="center" apply="org.zkoss.bind.BindComposer" viewModel="@id('vm') @init('info.bukova.isspst.ui.BuildingForm')">
|
|
<caption src="/img/building.png" zclass="form-caption" label="${labels.BuildingsFormTitle}" />
|
|
<vlayout>
|
|
<grid hflex="min">
|
|
<columns>
|
|
<column align="right" hflex="min" />
|
|
<column />
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<cell sclass="row-title">${labels.BuildingsFormCode} :</cell>
|
|
<cell>
|
|
<textbox id="code" constraint="@load(vm.constriant)" width="200px" value="@bind(vm.dataBean.code)" />
|
|
</cell>
|
|
</row>
|
|
<row>
|
|
<cell sclass="row-title">${labels.BuildingsFormName} :</cell>
|
|
<cell>
|
|
<textbox id="name" width="200px" value="@bind(vm.dataBean.name)" />
|
|
</cell>
|
|
</row>
|
|
<row>
|
|
<cell sclass="row-title">${labels.BuildingsFormDescription} :</cell>
|
|
<cell>
|
|
<textbox id="description" width="300px" value="@bind(vm.dataBean.description)" />
|
|
</cell>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
<include src="/app/formButtons.zul" />
|
|
</vlayout>
|
|
</window>
|
|
</zk> |