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.
71 lines
2.5 KiB
Plaintext
71 lines
2.5 KiB
Plaintext
<?page title="Adresa" contentType="text/html;charset=UTF-8"?>
|
|
<zk>
|
|
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
|
|
<window id="editWin" title="Adresa" border="normal" apply="org.zkoss.bind.BindComposer"
|
|
viewModel="@id('vm') @init('info.bukova.isspst.ui.addressbook.AddressForm')"
|
|
closable="true" width="600px">
|
|
|
|
<grid width="580px">
|
|
<columns>
|
|
<column label="" hflex="min"/>
|
|
<column label="" hflex="min"/>
|
|
<column label=""/>
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<label value="Firma" /> <textbox id="company" constraint="@load(vm.constriant)" value="@bind(vm.dataBean.company)" instant="true" width="320px"/>
|
|
<button image="/img/search.png" label="Hledat v ARESu" onClick="@command('searchAres')" sclass="nicebutton" disabled="@load((vm.dataBean.ic == 0) && (empty vm.dataBean.company))" />
|
|
</row>
|
|
<row>
|
|
<label value="IČ" /> <textbox value="@bind(vm.dataBean.ic)"/>
|
|
</row>
|
|
<row>
|
|
<label value="DIČ" /> <textbox value="@bind(vm.dataBean.dic)"/>
|
|
</row>
|
|
<row>
|
|
<label value="Oddělení" /> <textbox value="@bind(vm.dataBean.department)"/>
|
|
</row>
|
|
<row>
|
|
<label value="Kontaktní osoba" /> <textbox value="@bind(vm.dataBean.contactName)"/>
|
|
</row>
|
|
<row>
|
|
<label value="Ulice" /> <textbox value="@bind(vm.dataBean.street)" width="320px"/>
|
|
</row>
|
|
<row>
|
|
<label value="Číslo domu" /> <textbox value="@bind(vm.dataBean.houseNumber)" width="80px"/>
|
|
</row>
|
|
<row>
|
|
<label value="Město" /> <textbox id="city" constraint="@load(vm.constriant)" value="@bind(vm.dataBean.city)" width="320px"/>
|
|
</row>
|
|
<row>
|
|
<label value="PSČ" /> <textbox value="@bind(vm.dataBean.zipCode)"/>
|
|
</row>
|
|
<row>
|
|
<label value="Telefon" /> <textbox value="@bind(vm.dataBean.phone)"/>
|
|
</row>
|
|
<row>
|
|
<label value="E-mail" /> <textbox id="email" constraint="@load(vm.constriant)" value="@bind(vm.dataBean.email)" width="320px"/>
|
|
</row>
|
|
<row>
|
|
<label value="Web" /> <textbox id="web" constraint="@load(vm.constriant)" value="@bind(vm.dataBean.web)" width="320px"/>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
<hlayout>
|
|
<panel>
|
|
<panelchildren>
|
|
<vlayout>
|
|
<panel>
|
|
<panelchildren><label value="Poznámka"/> </panelchildren>
|
|
</panel>
|
|
<panel>
|
|
<panelchildren><ckeditor height="65px" width="330px" toolbar="Basic" value="@bind(vm.dataBean.description)"/>
|
|
</panelchildren>
|
|
</panel>
|
|
</vlayout>
|
|
</panelchildren>
|
|
</panel>
|
|
</hlayout>
|
|
<include src="/app/formButtons.zul"/>
|
|
</window>
|
|
</zk> |