alfresco
Alfresco-modell med dynamisk lista
Sök…
Grundläggande exempel
content-model.xml :
....
<constraints>
<constraint name="my:aConstraintList" type="x.y.z.project.model.constraint.AConstraintList">
</constraint>
....
<property name="my:aValue">
<title>My Value</title>
<type>d:text</type>
<constraints>
<constraint ref="my:aConstraintList"></constraint>
</constraints>
</property>
och Java-klassen förklarade tidigare:
public class AConstraintList extends ListOfValuesConstraint implements Serializable {
....
@Override
public final List<String> getAllowedValues() {
// Return here the list of values. Enum, call a webservice, etc.
}
@Override
public final String getDisplayLabel(final String value, final MessageLookup messageLookup) {
// Return here the label for the value
}
}
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow