Orbeon Form Builderのxml属性などの単一行テキストコンポーネントのヒントをdata.xmlに送信するにはどうすればよいですか?例:ヒント:first-name = "Erik" last-name = "Bruchez" email = "info@orbeon.com"
<?xml version="1.0" encoding="utf-8" ?>
<form>
<contact first-name="Erik" last-name="Bruchez" email="info@orbeon.com" />
</form>
次に、送信ボタンで次のようなdata.xmlを生成します。
<contact>
<first-name>Erik</first-name>
<last-name>Bruchez</last-name>
<email>info@orbeon.com</email>
<phone>6505555555</phone>
</contact>
または、Form Builderからdata.xml属性を定義する方法はありますか?