2009-10-01 18:46:46 +02:00
|
|
|
<!--
|
2010-02-04 06:57:00 +01:00
|
|
|
This file is part of NavalPlan
|
2009-10-01 18:46:46 +02:00
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
|
-->
|
|
|
|
|
|
2009-11-12 17:54:54 +01:00
|
|
|
<?xel-method prefix="i18n" name="_" class="org.zkoss.ganttz.i18n.I18nHelper"
|
|
|
|
|
signature="java.lang.String _(java.lang.String name)" ?>
|
|
|
|
|
|
2009-09-10 14:41:01 +02:00
|
|
|
<zk xmlns:n="http://www.zkoss.org/2005/zk/native">
|
2009-10-16 03:19:24 +02:00
|
|
|
<zscript><![CDATA[
|
|
|
|
|
resourcesLoadPanel = self;
|
|
|
|
|
]]>
|
|
|
|
|
</zscript>
|
2009-10-22 09:23:21 +02:00
|
|
|
|
|
|
|
|
|
2009-10-03 23:42:03 +02:00
|
|
|
<borderlayout sclass="resourcesloadlayout" width="auto">
|
2010-02-22 13:08:17 +01:00
|
|
|
<north height="30px" border="0" sclass="toolbar-box">
|
2009-10-05 20:12:11 +02:00
|
|
|
<hbox align="center" id="toolbar">
|
2009-10-01 14:18:28 +02:00
|
|
|
<separator/>
|
2010-02-12 08:56:51 +01:00
|
|
|
<label>${i18n:_('Zoom')}:</label>
|
2010-02-05 16:55:10 +01:00
|
|
|
<listbox id="listZoomLevels" mold="select" rows="1"
|
2009-12-28 19:17:57 +01:00
|
|
|
model="${resourcesLoadPanel.zoomLevels}"
|
|
|
|
|
onSelect="resourcesLoadPanel.setZoomLevel(self.selectedItem.value);" >
|
|
|
|
|
</listbox>
|
|
|
|
|
<separator/>
|
2010-05-05 18:05:51 +02:00
|
|
|
<hbox id="additionalFilterInsertionPoint1" />
|
|
|
|
|
<separator/>
|
2009-10-01 14:18:28 +02:00
|
|
|
Filter:
|
2010-05-06 15:02:59 +02:00
|
|
|
<listbox id="listFilters" mold="select" rows="1" width="100px"
|
2010-04-08 18:05:06 +02:00
|
|
|
model="${resourcesLoadPanel.filters}"
|
2010-04-14 18:08:50 +02:00
|
|
|
onSelect="resourcesLoadPanel.setFilter(self.selectedItem.value);">
|
2010-04-08 18:05:06 +02:00
|
|
|
</listbox>
|
2010-04-29 11:48:37 +02:00
|
|
|
<separator/>
|
2010-05-06 15:02:59 +02:00
|
|
|
${i18n:_('Name filter')}:
|
|
|
|
|
<combobox id="filterByNameCombo" width="50px"
|
2010-04-29 11:48:37 +02:00
|
|
|
onChange="resourcesLoadPanel.onSelectFilterByName(self.selectedItemApi.value)" />
|
2010-04-29 11:48:40 +02:00
|
|
|
<separator/>
|
2010-05-05 18:05:51 +02:00
|
|
|
<hbox id="additionalFilterInsertionPoint2" />
|
2009-10-01 14:18:28 +02:00
|
|
|
</hbox>
|
|
|
|
|
</north>
|
|
|
|
|
|
|
|
|
|
<center border="0">
|
2009-09-18 14:56:57 +02:00
|
|
|
<borderlayout sclass="resourcesload">
|
2010-02-09 17:05:55 +01:00
|
|
|
<west size="250px" flex="true" collapsible="true"
|
2009-09-18 14:56:57 +02:00
|
|
|
splittable="true" autoscroll="true">
|
2009-09-24 20:03:45 +02:00
|
|
|
|
2009-10-01 14:18:28 +02:00
|
|
|
<borderlayout >
|
2010-05-17 10:32:55 +02:00
|
|
|
<north border="0" height="35px" flex="true" collapsible="true">
|
2009-10-14 17:32:26 +02:00
|
|
|
<vbox pack="top" align="center">
|
2009-09-24 20:03:45 +02:00
|
|
|
<tree fixedLayout="true">
|
|
|
|
|
<treecols>
|
|
|
|
|
<treecol label="Name" height="29px"/>
|
|
|
|
|
</treecols>
|
|
|
|
|
</tree>
|
|
|
|
|
|
|
|
|
|
</vbox>
|
|
|
|
|
</north>
|
2009-10-03 23:42:03 +02:00
|
|
|
<center border="0" style="overflow-x:scroll">
|
2009-09-24 20:03:45 +02:00
|
|
|
<div sclass="leftpanelgap" id="insertionPointLeftPanel"></div>
|
|
|
|
|
</center>
|
|
|
|
|
</borderlayout>
|
2009-09-18 14:56:57 +02:00
|
|
|
</west>
|
2009-09-10 14:41:01 +02:00
|
|
|
|
2009-09-24 20:03:45 +02:00
|
|
|
<center sclass="taskspanel">
|
|
|
|
|
<borderlayout>
|
2010-05-17 10:32:55 +02:00
|
|
|
<north border="0"><div sclass="timetrackergap" height="30px" id="insertionPointTimetracker"></div></north>
|
2009-09-24 20:03:45 +02:00
|
|
|
<center autoscroll="true" border="0" sclass="rightpanellayout">
|
|
|
|
|
<div id="insertionPointRightPanel" sclass="taskspanelgap"></div>
|
|
|
|
|
</center>
|
|
|
|
|
</borderlayout>
|
|
|
|
|
|
2009-09-18 14:56:57 +02:00
|
|
|
</center>
|
|
|
|
|
</borderlayout>
|
2009-10-01 14:18:28 +02:00
|
|
|
</center>
|
2010-05-13 13:18:10 +02:00
|
|
|
<south height="200px" collapsible="true" title="Graphics"
|
2010-05-13 13:18:06 +02:00
|
|
|
sclass="scheduling-graphics" id="graphics"
|
|
|
|
|
onOpen="resourcesLoadPanel.changeChartVisibility(event.open);">
|
2010-05-13 13:18:05 +02:00
|
|
|
<div id="insertionPointChart" />
|
2009-10-01 14:18:28 +02:00
|
|
|
</south>
|
2009-09-10 14:41:01 +02:00
|
|
|
</borderlayout>
|
2009-09-18 14:56:57 +02:00
|
|
|
</zk>
|