- Issue created by @Shubham_Kumar
- Assigned to sourabhsisodia_
The module is working good , all check boxes are getting selected.
- Issue was unassigned.
- ๐ฎ๐ณIndia Shubham_Kumar
@sourabhsisodia_ Please have a look on the attached screencast
- ๐ฎ๐ณIndia Shubham_Kumar
The issue is only in the release version. The problem is with the JavaScript codeโboolean values should be in lowercase.
For Example:-
First It was
$('.js-term-fields').prop('checked', TRUE);
$('.js-term-fields').prop('checked', FALSE)It Should Be
$('.js-node-fields').prop('checked', true);
$('.js-term-fields').prop('checked', false) - ๐ต๐ญPhilippines _renify_ cebu
Can you check the console.log ? It seems boolean is already lowercase https://git.drupalcode.org/project/advance_importer/-/blob/1.3.1/js/sele...
It work as fine on my end