![]() |
|
|
|
|
Change By:
|
Christian Ringele
(04/Nov/14 2:15 PM)
|
|
Description:
|
Setting on the CompositeFieldDefinition the required property it is ignored. So if one needs to ensure that all fields in the composite need to be filled out, one must set to all sub fields a required property.
Much easier would be if the required could be set on the composite itself.
Use case definition: If the Composite field sets required=true, every sub field in the composite needs a value.
Problem: CompositeFieldDefinition does not implement isValid(), and the super's isValid is only checking the validation of the sub fields.
This code solves the problem, I included a patch. {code} @Override public boolean isValid() { boolean isValid = super.isValid(); if (this.isRequired()) {
// If required is set on the composite itself then it checks
if
one of the sub-fields is empty -> all must have a value List<AbstractField<PropertysetItem>> fields = getFields
(
this, false); for (AbstractField<PropertysetItem> field : fields) { if (
isEmpty()) { isValid = false; } }
}
return isValid; } {code}
|
|
|
|
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
|
----------------------------------------------------------------
For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <
[email protected]>
----------------------------------------------------------------