문제

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