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.
isspst/src/main/webapp/settings/globalSettings.zul

50 lines
1.3 KiB
Plaintext

<?page title="${labels.GlobalSettings}" contentType="text/html;charset=UTF-8"?>
<zk>
<window
id="editWin"
border="normal"
closable="true"
apply="org.zkoss.bind.BindComposer"
viewModel="@id('vm') @init('info.bukova.isspst.ui.settings.GlobalSettingsVM')"
width="700px"
height="600px"
binder="@init(queueName='email')">
<caption
src="/img/global-setting-032.png"
zclass="form-caption"
label="${labels.GlobalSettings}" />
<tabbox
orient="vertical"
vflex="1">
<tabs width="140px">
<tab label="${labels.Requirements}" />
<tab label="${labels.EMails}" />
<tab label="${labels.ContactInfo }" />
<tab label="${labels.BankInfo}" />
<tab label="${labels.TravelOrders}" />
</tabs>
<tabpanels>
<tabpanel>
<div>
<checkbox
label="${labels.EnableRequirements}"
checked="@bind(vm.settings.enableRequirements)" disabled="@load(not vm.canSave)" />
</div>
</tabpanel>
<tabpanel>
<include src="/settings/global/email.zul" />
</tabpanel>
<tabpanel>
<include src="/settings/global/address.zul" />
</tabpanel>
<tabpanel>
<include src="/settings/global/bank.zul" />
</tabpanel>
<tabpanel>
<include src="/settings/global/travelOrders.zul" />
</tabpanel>
</tabpanels>
</tabbox>
<include src="/app/formButtons.zul" />
</window>
</zk>