PricingBlog

Add values from a form to a list below the form with the selected values

  • lukasmohr-1270652788246052875

    Lukas Mohr

    1 year ago

    I have a form where I want the list the chosen values in a list below the form. The form consists of dropdowns and text inputs.

    I have been trying to search a bit, but haven't been able to find something to push me in the right direction yet.
    1270652788560498759-image.png
    1
  • erikbeus-1270653769016803328

    Erik Beuschau

    1 year ago

    I think there are 2 ways of achieving this (if I understand your question correctly):
    - Create 1 variable for each input/dropdown that holds the current value of the input
    - Create 1 variable for all inputs that holds each input's value in an object for instance
    To show the selected values below the form, you would use the value(s) from your variables
  • lukasmohr-1270655778604322919

    Lukas Mohr

    1 year ago

    How do I hook up each input/dropdowm to a variable?
  • lukasmohr-1270662644646547468

    Lukas Mohr

    1 year ago

    Thanks @Erik Beuschau 😄