Setting hidden fields in form doesn't work

URL : https://www.qcard.club/?utm_source=source&utm_medium=medium&utm_campaign=campaign

$w.onReady(function () {
 let params = wixLocation.query
    console.log(params)
    $w('#campaign').value = params.utm_campaign
    $w('#medium').value = params.utm_medium
    $w('#source').value = params.utm_source
}

Even after doing this, the values don’t reflect in form submissions table. I read this post (https://www.wix.com/corvid/forum/community-discussion/passing-hidden-data-in-a-form), but I am not using any dataset. Can someone help me to get this data in form submissions?

Hi,

Can you please elaborate on the use case? How do you submit the form without dataset?
If you are using a simple Insert() function you just set the relevant fields in the inserted object, if you are using dataset you need to use the setFieldValue() function.

Good luck :slight_smile:
Or

To carry on with Or’s post above, you have mentioned Form Submission Table in your post and that is only added when you use the Wix Forms app.

The Wix Forms submission table is not a dataset that can be used on a page.
https://support.wix.com/en/ascend-by-wix/wix-forms
https://support.wix.com/en/article/viewing-your-wix-forms-submissions-table

To do what you are doing with code and for using that linked forum post, you will need to be using a dataset for this and not a Submission Table from the Wix Forms app.

Hence why they continually have used $w(’ #dataset1 ') in the code on that forum post.

That will mean that you will need to create your own user input form and not use Wix Forms.

Wix Corvid works with Datasets that you can add to your page itself and not with Submission Tables from the Wix Forms app.
https://support.wix.com/en/article/about-datasets-6368396