質問

I have a variable from a previous step which I want to use to prepopulate textboxes in a dynaform via an SQL query to an external database. How can I do this? Can anyone provide me with an example XML field ... or do I have to use a trigger?

Thanks

役に立ちましたか?

解決

You can find material on this link, when you create the field to populate it with the sql statement choose the connection you made and then write the sql on the box below.

The final xml will be something like>

 <MyDropdown type="dropdown" required="0" readonly="0" savelabel="0"
   mode="edit" options="Array" sqlconnection="dbarray">
   SELECT CONTACT_ID, CONTACT_NAME FROM CONTACTS
   <en>Select Contact</en>
 </MyDropdown>

Regards.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top