Cannot prefill hidden Ninja Forms fields

If have a page where you can select a specific broker from a list. The broker name has to be filled in into the hidden field in Ninja Forms.

if(jQuery('#broker-list').length) { //checks if the list exists
    jQuery(document).on( 'nfFormReady', function( e, layoutView ) {
        var broker_name = "";

        jQuery(document).on("click", ".broker" , function() {
            broker_name = jQuery('.broker__name', this).text();

            console.log(broker_name); // this works perfectly

            if(jQuery('#nf-field-33').length) {
                jQuery(this).val(broker_name); //value of field is still empty
            }
            if(jQuery('#nf-field-34').length) {
                jQuery(this).val(broker_name); //value of field is still empty
            }
        });
    });
}

I always thought that you have to wrap is with jQuery(document).on( 'nfFormReady', function( e, layoutView ) { }); in order to prefill fields in Ninja Forms with jQuery. But that doesn't seems to work in this case. What wrong over here?

I know there are PHP possibilities to fill in data in a field, but that isn't an option this case.

It works perfectly when I copy/paste the code above in console.

Topic plugin-ninja-forms jquery forms Wordpress

Category Web


According to https://developer.ninjaforms.com/codex/changing-field-values/ you need to add .trigger( 'change' ) when changing Ninfa Forms field values programmatically.

This should work:

if(jQuery('#broker-list').length) { //checks if the list exists
    jQuery(document).on( 'nfFormReady', function( e, layoutView ) {
        var broker_name = "";

        jQuery(document).on("click", ".broker" , function() {
            broker_name = jQuery('.broker__name', this).text();

            console.log(broker_name); // this works perfectly

            if(jQuery('#nf-field-33').length) {
                jQuery(this).val(broker_name).trigger( 'change' );
            }
            if(jQuery('#nf-field-34').length) {
                jQuery(this).val(broker_name).trigger( 'change' );
            }
        });
    });
}

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.