Grouped visually the same entity sequences in cofiguration window

FEA: ItEr75S04BugFixing
This commit is contained in:
Lorenzo Tilve Álvaro 2011-10-05 12:06:17 +02:00
parent 2020051069
commit b5d76ba3a5
3 changed files with 32 additions and 1 deletions

View file

@ -489,6 +489,11 @@ public class ConfigurationController extends GenericForwardComposer {
row.setTooltiptext(_("The code sequence is already in use and it can not be updated."));
}
if ((row.getPreviousSibling() != null)
&& !((EntitySequence) ((Row) row.getPreviousSibling())
.getValue()).getEntityName().equals(entityName)) {
row.setClass("separator");
}
}
}

View file

@ -213,7 +213,7 @@
<separator bar="false" height="4px"
orient="vertical" />
<grid id="entitySequencesGrid"
sizedByContent="false" height="400px"
sizedByContent="false" height="400px" sclass="entity-sequences-grid"
rowRenderer="@{configurationController.entitySequenceGroupRenderer}">
<columns>
<column

View file

@ -1789,3 +1789,29 @@ select {
.template-tree-tabpanel {
overflow-x: auto;
}
select {
margin-top: 0;
margin-bottom: 0;
font-size:11px;
}
.scheduling-graphics {
width: auto !important;
}
.scheduling-graphics .z-tabs-ver-space {
width: 0;
border: 0;
}
.entity-sequences-grid tr.z-row td.z-row-inner {
border-bottom: 0;
border-top: 0;
padding-bottom: 8px;
padding-top: 4px;
}
.entity-sequences-grid tr.separator td.z-row-inner {
border-top: 1px solid #AAAAAA;
}