/webportal/src/main/webapp/WEB-INF/zul/ContextualLayerSelection.zul
Unknown | 51 lines | 42 code | 9 blank | 0 comment | 0 complexity | 440372c2e0ea7e464571f1c0599b890f MD5 | raw file
1<?variable-resolver class="org.zkoss.spring.DelegatingVariableResolver"?> 2<?component name="ContextualLayersTree" macro-uri="/WEB-INF/zul/ContextualLayersTree.zul"?> 3<zk> 4 <window id="contextuallayerselectionwindow" use="org.ala.spatial.analysis.web.ContextualLayerSelection" 5 apply="org.ala.spatial.analysis.web.ContextualLayerSelection" width="360px" xmlns:n="http://www.zkoss.org/2005/zk/native" 6 style="position:absolute;left:20px;top:20px" draggable="false"> 7 <n:div class="left-cover" /> 8 <n:div class="fancybox-bg" id="fancybox-bg-ne" /> 9 <n:div class="fancybox-bg" id="fancybox-bg-se" /> 10 <n:div class="fancybox-bg" id="fancybox-bg-sw" /> 11 <n:div class="fancybox-bg" id="fancybox-bg-nw" /> 12 <n:div class="fancybox-bg" id="fancybox-bg-n" /> 13 <n:div class="fancybox-bg" id="fancybox-bg-e" /> 14 <n:div class="fancybox-bg" id="fancybox-bg-s" /> 15 <n:div class="fancybox-bg" id="fancybox-bg-w" /> 16 <a sclass="fancybox-close" onClick="areamappolygonwindow.onClick$btnCancel(null)" style="display: inline" /> 17 18 <caption label="Choose a Polygonal Layer" /> 19 <vbox sclass="embedWindowsContent"> 20 21 <separator /> 22 <label sclass="wordwrap" value="Select a polygonal layer from the tree or by typing into the autocomplete box." /> 23 <separator /> 24 25 26 <vbox id="vbxLayerList" visible="true" sclass="embedWindowsContent"> 27 <hbox width="100%"> 28 <combobox id="autoCompleteLayers" use="org.ala.spatial.analysis.web.ContextualLayersAutoComplete" autodrop="true" width="250px"> 29 <comboitem label=""/> 30 </combobox> 31 32 <!-- <button sclass="goButton" label="Add" id="btnAddLayer"/> --> 33 34 </hbox> 35 <div height="300px" style="margin-left:20px;overflow: auto"> 36 <ContextualLayersTree id="layerTree" height="400px"/> 37 </div> 38 </vbox> 39 40 <div sclass="embedWindowsButtons"> 41 <hbox> 42 <button sclass="goButton" label="Cancel" id="btnCancel"/> 43 <button sclass="goButton" label="Next" id="btnNext"/> 44 </hbox> 45 </div> 46 <separator /> 47 </vbox> 48 49 </window> 50</zk> 51