iPaaS Dynamic Forms - Custom control - how to get back the value

I have a Dynamic form with a custom Account Control broken into 5 parts. I need to be able to pull these values out individually, or even as one value hyphen separated. See Custom HTML below:

 

<style>th { font-size: 0.8em }
table { border-collapse: separate; border-spacing: 6px }</style>

<table>
  <thead>
    <tr>
      <th>Fund</th>
      <th>Program</th>
      <th>Location</th>
      <th>Department</th>
      <th>Account</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><input type="text" name="fromfund1" maxlength="2" style="width: 2ch"></td>
      <td><input type="text" name="fromprogram1" maxlength="4" style="width: 4ch"></td>
      <td><input type="text" name="fromlocation1" maxlength="2" style="width: 2ch"></td>
      <td><input type="text" name="fromdepartment1" maxlength="5" style="width: 5ch"></td>
      <td><input type="text" name="fromaccount1" maxlength="5" style="width: 5ch"></td>
    </tr>
  </tbody>
</table>

 

Can anyone tell me how to accomplish this in iPaaS?

Tags ipaas-dynamic-forms ipaas-custom-control
Asked by Will Tonkin on Fri 4/19/24 10:24 AM Last edited Fri 4/26/24 1:08 PM
Sign In to leave feedback or contribute an answer

Answers (0)