We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am unable to add values using the following code:
let dualListbox = new DualListbox('#select');
// Access the buttons: dualListbox.add_button.setAttribute('a', 'a'); dualListbox.add_all_button.setAttribute('a', 'a'); dualListbox.remove_button.setAttribute('a', 'a'); dualListbox.remove_all_button.setAttribute('a', 'a');
// Access the search field: dualListbox.search.classList.add('some_class');
// Access the list containers: dualListbox.selectedList.setAttribute('a', 'a'); dualListbox.availableList.setAttribute('a', 'a');
The text was updated successfully, but these errors were encountered:
This will need to be investigated. Is there an error that in the console?
Sorry, something went wrong.
It regularly gives errors to the class.
Correct usage eg;
duallistbox.add_button.classList.add("btn-primary");
wrong use; duallistbox.add_button.classList.add("btn btn-primary");
duallistbox.add_button.classList.add("btn btn-primary");
If added like this it becomes
duallistbox.add_button.classList.add("btn"); duallistbox.add_button.classList.add("btn-primary");
No branches or pull requests
I am unable to add values using the following code:
let dualListbox = new DualListbox('#select');
// Access the buttons:
dualListbox.add_button.setAttribute('a', 'a');
dualListbox.add_all_button.setAttribute('a', 'a');
dualListbox.remove_button.setAttribute('a', 'a');
dualListbox.remove_all_button.setAttribute('a', 'a');
// Access the search field:
dualListbox.search.classList.add('some_class');
// Access the list containers:
dualListbox.selectedList.setAttribute('a', 'a');
dualListbox.availableList.setAttribute('a', 'a');
The text was updated successfully, but these errors were encountered: