Skip to content
Advertisement

How to pass a value from javascript to drupal 8 form?

I need to pass a value from Javascript to my drupal 8 form.

I’ve added a hidden field to the form. Javascript is calculating a value and writes it into the field. But how can I get to the value within the function submitForm()?

Is using a hidden field even the right approach? If so, what do I have to do, to make this work?

I’ve removed most of the code for readability.

FooForm.php:

JavaScript

foocalculator.js:

JavaScript

Advertisement

Answer

The hidden fields are a bit special because the changes of the field value are not directly visible among the submitted values (which can be retrieved with $form_state->getValues()). Instead, they are visible in the user input values of the form state, so try this:

JavaScript

Be careful with using the getUserInput() for hidden fields, because unless you have a good reason why you do it (like you have in this case) a change in a hidden field is usually done by “unfriendly” entities, which are trying to break your site.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement