cq5 - Issue with saving property value in workflow metadata -


when wrote dialog participation step of workflow on aem 6.2 property value absolutetime retained workflow metadata, when tried same on aem 6.3 instance doesn't work.

here dialog:

<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0"     jcr:primarytype="nt:unstructured"     jcr:title="absolutetime"     sling:resourcetype="cq/gui/components/authoring/dialog"     helppath="en/cq/current/wcm/default_components.html#title">     <content         jcr:primarytype="nt:unstructured"         sling:resourcetype="granite/ui/components/foundation/container">         <layout             jcr:primarytype="nt:unstructured"             sling:resourcetype="granite/ui/components/foundation/layouts/fixedcolumns"             margin="{boolean}false"/>         <items jcr:primarytype="nt:unstructured">             <column                 jcr:primarytype="nt:unstructured"                 sling:resourcetype="granite/ui/components/foundation/container">                 <items jcr:primarytype="nt:unstructured">                     <absolutetime                         jcr:primarytype="nt:unstructured"                         sling:resourcetype="granite/ui/components/foundation/form/datepicker"                         fieldlabel="please schedule item publishing"                         name="absolutetime"                         type="datetime"/>                 </items>             </column>         </items>     </content> </jcr:root> 

i tried documentation says, same success.

is possible make work correctly , on aem 6.3 on 6.2?


Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -