It seems that Magnolia CMS 5.x is expecting a new format for multivalue field.
In the doc I found the dialog config for 5.x http://documentation.magnolia-cms.com/display/DOCS/Multivalue I also checked on the migration doc http://documentation.magnolia-cms.com/display/DOCS/10.+Migrate+from+4.5+to+5.2 But nothing is mentioned regarding the change in the underlying data. I guess it's only a migration task missing, or maybe I missed something myself? In Magnolia 4.5.x it looks like: [code] <sv:node sv:name="multipleChoices"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> <sv:value>mgnl:contentNode</sv:value> </sv:property> <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true"> <sv:value>mix:lockable</sv:value> </sv:property> <sv:property sv:name="jcr:uuid" sv:type="String"> <sv:value>18f1a38f-21fb-4bb7-99cc-4d4b65bd1bcd</sv:value> </sv:property> <sv:property sv:name="0" sv:type="String"> <sv:value>Choice 1</sv:value> </sv:property> <sv:property sv:name="1" sv:type="String"> <sv:value>Choice 2</sv:value> </sv:property> <sv:property sv:name="2" sv:type="String"> <sv:value>Choice 3</sv:value> </sv:property> <sv:property sv:name="jcr:createdBy" sv:type="String"> <sv:value>admin</sv:value> </sv:property> <sv:property sv:name="mgnl:activationStatus" sv:type="Boolean"> <sv:value>true</sv:value> </sv:property> <sv:property sv:name="mgnl:lastActivated" sv:type="Date"> <sv:value>2014-01-15T18:11:24.094+01:00</sv:value> </sv:property> <sv:property sv:name="mgnl:lastActivatedBy" sv:type="String"> <sv:value>superuser</sv:value> </sv:property> <sv:property sv:name="mgnl:lastModified" sv:type="Date"> <sv:value>2014-02-04T15:40:16.852+01:00</sv:value> </sv:property> <sv:property sv:name="mgnl:lastModifiedBy" sv:type="String"> <sv:value>superuser</sv:value> </sv:property> </sv:node>[/code] In Magnolia 5.x it looks like: [code] <sv:property sv:name="affiliation" sv:type="String" sv:multiple="true"> <sv:value>Choice 1</sv:value> <sv:value>Choice 2</sv:value> <sv:value>Choice 3</sv:value> </sv:property>[/code] -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=b277f672-b1a1-4fd7-a087-09d3a28003e2 ---------------------------------------------------------------- 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]> ----------------------------------------------------------------
