AEM authoring dialog - duplicate saved property value with different name
I've got the below textfield that authors use to input a property.
This gets saved in JCR as articleId.
<articleId
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/textfield"
fieldLabel="Article Id"
name="./articleId"/>
I would like to create another property and save the same articleId value against it(cq:panelTitle in my case). Essentially maintaining two properties with the same value.
Trying to prevent the authors from filling an additional field.
How do i achieve this during dialog save ?

Thanks.