|
|
|
@ -3,14 +3,46 @@
|
|
|
|
|
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
|
|
|
|
|
<window title="${labels.AgendaBuildings}" border="normal" apply="org.zkoss.bind.BindComposer" viewModel="@id('vm') @init('info.bukova.isspst.ui.BuildingList')">
|
|
|
|
|
|
|
|
|
|
<include src="/app/toolbar.zul"/>
|
|
|
|
|
<include src="/app/toolbar.zul" />
|
|
|
|
|
|
|
|
|
|
<listbox model="@load(vm.dataList)" selectedItem="@bind(vm.dataBean)">
|
|
|
|
|
<listhead>
|
|
|
|
|
<listheader label="${labels.BuildingsGridColumnCode}" width="10%" />
|
|
|
|
|
<listheader label="${labels.BuildingsGridColumnName}" width="30%" />
|
|
|
|
|
<listheader label="${labels.BuildingsGridColumnDescription}" width="60%" />
|
|
|
|
|
<listheader label="${labels.BuildingsGridColumnCode}" sort="auto(code)" onSort="@command('onSort', column='code')" width="10%" />
|
|
|
|
|
<listheader label="${labels.BuildingsGridColumnName}" sort="auto(name)" onSort="@command('onSort', column='name')" width="30%" />
|
|
|
|
|
<listheader label="${labels.BuildingsGridColumnDescription}" sort="auto(description)" onSort="@command('onSort', column='description')" width="60%" />
|
|
|
|
|
</listhead>
|
|
|
|
|
<auxhead sclass="category-center" visible="@load(vm.filter)">
|
|
|
|
|
<auxheader>
|
|
|
|
|
<div sclass="find-grid-cell">
|
|
|
|
|
<div sclass="find-grid-divtextbox">
|
|
|
|
|
<textbox value="@bind(vm.filterTemplate.code)" instant="true" onChange="@command('doFilter')" sclass="find-grid-textbox" />
|
|
|
|
|
</div>
|
|
|
|
|
<div sclass="find-grid-img">
|
|
|
|
|
<image src="/img/funnel.png" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</auxheader>
|
|
|
|
|
<auxheader>
|
|
|
|
|
<div sclass="find-grid-cell">
|
|
|
|
|
<div sclass="find-grid-divtextbox">
|
|
|
|
|
<textbox value="@bind(vm.filterTemplate.name)" instant="true" onChange="@command('doFilter')" sclass="find-grid-textbox" />
|
|
|
|
|
</div>
|
|
|
|
|
<div sclass="find-grid-img">
|
|
|
|
|
<image src="/img/funnel.png" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</auxheader>
|
|
|
|
|
<auxheader>
|
|
|
|
|
<div sclass="find-grid-cell">
|
|
|
|
|
<div sclass="find-grid-divtextbox">
|
|
|
|
|
<textbox value="@bind(vm.filterTemplate.description)" instant="true" onChange="@command('doFilter')" sclass="find-grid-textbox" />
|
|
|
|
|
</div>
|
|
|
|
|
<div sclass="find-grid-img">
|
|
|
|
|
<image src="/img/funnel.png" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</auxheader>
|
|
|
|
|
</auxhead>
|
|
|
|
|
<template name="model">
|
|
|
|
|
<listitem>
|
|
|
|
|
<listcell label="@load(each.code)" />
|
|
|
|
|