96 lines
3.9 KiB
Text
96 lines
3.9 KiB
Text
<!--
|
|
This file is part of NavalPlan
|
|
|
|
Copyright (C) 2009 Fundación para o Fomento da Calidade Industrial e
|
|
Desenvolvemento Tecnolóxico de Galicia
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
|
|
<?xel-method prefix="i18n" name="_" class="org.zkoss.ganttz.i18n.I18nHelper"
|
|
signature="java.lang.String _(java.lang.String name)" ?>
|
|
|
|
<zk xmlns:n="http://www.zkoss.org/2005/zk/native">
|
|
<zscript><![CDATA[
|
|
resourcesLoadPanel = self;
|
|
]]>
|
|
</zscript>
|
|
|
|
|
|
<borderlayout sclass="resourcesloadlayout" width="auto">
|
|
<north height="30px" border="0" sclass="toolbar-box">
|
|
<hbox align="center" id="toolbar">
|
|
<separator/>
|
|
<label>${i18n:_('Zoom')}:</label>
|
|
<listbox id="listZoomLevels" mold="select" rows="1"
|
|
model="${resourcesLoadPanel.zoomLevels}"
|
|
onSelect="resourcesLoadPanel.setZoomLevel(self.selectedItem.value);" >
|
|
</listbox>
|
|
<separator/>
|
|
<hbox id="additionalFilterInsertionPoint1" />
|
|
<separator/>
|
|
${i18n:_('Filter')}:
|
|
<listbox id="listFilters" mold="select" rows="1" width="100px"
|
|
model="${resourcesLoadPanel.filters}"
|
|
onSelect="resourcesLoadPanel.setFilter(self.selectedItem.value);">
|
|
</listbox>
|
|
<separator/>
|
|
<label id="filterByNameLabel">${i18n:_('Name filter')}:</label>
|
|
<combobox id="filterByNameCombo" width="50px"
|
|
onChange="resourcesLoadPanel.onSelectFilterByName(self)" />
|
|
<separator/>
|
|
<hbox id="additionalFilterInsertionPoint2" />
|
|
</hbox>
|
|
</north>
|
|
|
|
<center border="0">
|
|
<borderlayout sclass="resourcesload">
|
|
<west size="250px" flex="true" collapsible="true"
|
|
splittable="true" autoscroll="true">
|
|
|
|
<borderlayout >
|
|
<north border="0" height="35px" flex="true" collapsible="true">
|
|
<vbox pack="top" align="center">
|
|
<tree fixedLayout="true">
|
|
<treecols>
|
|
<treecol label="${i18n:_('Name')}" height="29px"/>
|
|
</treecols>
|
|
</tree>
|
|
|
|
</vbox>
|
|
</north>
|
|
<center border="0" style="overflow-x:scroll">
|
|
<div sclass="leftpanelgap" id="insertionPointLeftPanel"></div>
|
|
</center>
|
|
</borderlayout>
|
|
</west>
|
|
|
|
<center sclass="taskspanel">
|
|
<borderlayout>
|
|
<north border="0"><div sclass="timetrackergap" height="30px" id="insertionPointTimetracker"></div></north>
|
|
<center autoscroll="true" border="0" sclass="rightpanellayout">
|
|
<div id="insertionPointRightPanel" sclass="taskspanelgap"></div>
|
|
</center>
|
|
</borderlayout>
|
|
|
|
</center>
|
|
</borderlayout>
|
|
</center>
|
|
<south height="200px" collapsible="true" title="${i18n:_('Graphics')}"
|
|
sclass="scheduling-graphics" id="graphics"
|
|
onOpen="resourcesLoadPanel.changeChartVisibility(event.open);">
|
|
<div id="insertionPointChart" />
|
|
</south>
|
|
</borderlayout>
|
|
</zk>
|