Hi all,
while i was adapting the "
Last Option In Array (Numbers) (Checkboxes) Row Excludes All Others
" workaround to my needs i find a line that give me unexpected behavior, at the bottom of the script:
Code:
$('input[type="hidden"]', this).attr('value', 'thisValue');
<thisValue> is a var, while the single quote just print the string "thisValue" in the export
at least i have this problem fixed like this:
Code:
$('input[type="hidden"]', this).attr('value', thisValue);
I've missed something ? if not how can i update the reference ?
Thanks for all the work you guys put in this great software.