Insert xml element with text value
Posted: Tue Dec 19, 2023 8:25 pm
Hello,
We use oxygen sdk 25.0.0.0.
We have this element in the xsd :
We want to set the element value to FULL when element is inserted.
I tried to use the content completion configuration file with this value :
But it does not work.
Is there an equivalent of
If no, how can I add text value to simplePara element when inserted.
Thanks,
Regards,
Isabelle
We use oxygen sdk 25.0.0.0.
We have this element in the xsd :
Code: Select all
<xs:complexType mixed="true" name="simplePara">
<xs:attribute ref="id"/>
</xs:complexType>
I tried to use the content completion configuration file with this value :
Code: Select all
<valueProposals path="/exportRegistrationStmt/simplePara">
<items>
<item value="full"/>
</items>
</valueProposals>
Is there an equivalent of
Code: Select all
<elementProposals path="exportRegistrationStmt" insertElements="simplePara">
<insertAttribute name="exportRole" value="full"/>
</elementProposals>
Thanks,
Regards,
Isabelle