无网络连接
  1. Home
  2. General

Passing Values between forms

作者:Mark Carpenter @mark.carpenter
    2022-05-07 13:23:03.187Z

    Thought I'd pass along this little discovery. If you are implementing a UI with multiple webforms, I learned that global variables do not carry forward through the webform redirect. In my case I wish to pass along some SQL ids and other data to maintain integrity and keep things efficient. I discovered a pretty easy way to overcome the issue without saving/retrieving from a table. Simply pass the data elements as a form field and mark those fields with CSS visibility:hidden. This way the user can't modify the value and TA happily passes it forward to the next webform.

    • 1 回复
    1. I
      isedwinr @isedwinr
        2022-05-11 12:45:07.615Z

        Nice! thanks for sharing.