Replaced component master-detail with a GPL alternative based on the code of the ZK3 version.

FEA: ItEr75S08MigrationZK5
This commit is contained in:
Jacobo Aragunde Pérez 2011-10-19 19:02:04 +02:00
parent 41ca9de2b3
commit f8e61b5ea1
4 changed files with 15 additions and 4 deletions

View file

@ -253,6 +253,11 @@
<groupId>com.igalia.java.zk.components</groupId>
<artifactId>jfreechartengine</artifactId>
</dependency>
<!-- GPL detailrow Component for ZK -->
<dependency>
<groupId>com.igalia.java.zk.components</groupId>
<artifactId>customdetailrowcomponent</artifactId>
</dependency>
<!-- Gettext commons -->
<dependency>
<groupId>org.xnap.commons</groupId>

View file

@ -184,10 +184,10 @@
</columns>
<rows>
<row self="@{each='hoursGroupWrapper'}" value="@{hoursGroupWrapper}">
<detail open="true">
<detailrow open="true">
<listHoursGroupCriterionRequirements/>
<separator bar="false" spacing="40px" orient="vertical"/>
</detail>
</detailrow>
<textbox value="@{hoursGroupWrapper.code}"
readonly="@{criterionRequirementsController.readOnly}"
disabled="@{criterionRequirementsController.isCodeAutogenerated}" />

View file

@ -39,7 +39,7 @@
<rows>
<!-- To iterate on workersConfiguration Units -->
<row self="@{each='configurationUnit'}" value="@{configurationUnit}">
<detail>
<detailrow>
<!-- Assigned resources -->
<panel title="${i18n:_('Worker assignments')}" border="normal">
<panelchildren style="padding:10px;">
@ -124,7 +124,7 @@
</panelchildren>
</panel>
</detail>
</detailrow>
<textbox value="@{configurationUnit.name}"
constraint="no empty:${i18n:_('cannot be null or empty')}" />
<textbox value="@{configurationUnit.alpha}"

View file

@ -197,6 +197,12 @@
<artifactId>jfreechartengine</artifactId>
<version>1.0</version>
</dependency>
<!-- GPL detailrow Component for ZK -->
<dependency>
<groupId>com.igalia.java.zk.components</groupId>
<artifactId>customdetailrowcomponent</artifactId>
<version>1.0.0</version>
</dependency>
<!-- Gettext commons -->
<dependency>
<groupId>org.xnap.commons</groupId>