You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think I fixed the problem with using this plugin with PHP. I modified the following lines,
Around line 43
helperSelectNamePostfix: 'helper_',
// Original Line Below
// helperSelectNamePostfix: '_helper', // 'string_of_postfix' / false
Around Line 653
this.elements.select1.attr('name', value + '1_' + this.originalSelectName);
this.elements.select2.attr('name', value + '2_' + this.originalSelectName);
// Below are original Lines
// this.elements.select1.attr('name', this.originalSelectName + value + '1');
// this.elements.select2.attr('name', this.originalSelectName + value + '2');
Hello,
On the following code:
After deselecting option 1 and validating the form we get the table:
The variable is therefore false.
Correcting the code at setHelperSelectNamePostfix like this:
We get the table:
The text was updated successfully, but these errors were encountered: