Answered

How to stop updating a data source with many bound fields

On a form I have many hidden fields bound to a data source so I can do calculations and make references. But I end up writing data back to the data source, adding rows to it, any time I upload the form. I only want to add one row to it based on one field. How can I pull in data from the data source this way without writing to it when I don't want to?

  • If you want to pull in data from a data source from a choices field set to update rows, but you don't want to change data, instead of binding you can refer back to the data source. Try this in the dynamic value property of the field where you want the data: {{choicesField[0]}}, with 0 as the column number.


    1 person likes this
Login or Signup to post a comment