Hello!
I’ve added a hidden field (named ‘bid’) to a form, and I’m populating with JavaScript:
Feathery.init(‘ID’)
Feathery.renderAt(‘form-container’, { formName: “FORM_NAME” });
Feathery.setFieldValues({bid: “value”});
When I check it in the console (before submitting), I see the value in there using this line:
console.log(Feathery.getFieldValues());
However, I don’t see the value in my responses, nor in my webook that I attached.