I have set up a checkbox that should appear with each row in the list. I would like to pass row.id and boolean based on checkbox state. But the problem is that it only works for the first checkbox: id and boolean state is passed.
I have added javascript to listen to checkbox state and after checking, send a POST request to Flask app. It works but it only fires when the first checkbox is checked, all other checkboxes generated by Jinja2 are ignored.
document.addEventListener('DOMContentLoaded', function () {
var checkbox = document.querySelector('.input[type="checkbox"]');
checkbox.addEventListener('change', function () {
var list_id = $(this).attr('list_id');
if (checkbox.checked) {
req = $.ajax({
url : '/dashboard',
type : 'POST',
data : { id: list_id, active : 'true' }
});
console.log(list_id);
} else {
req = $.ajax({
url : '/dashboard',
type : 'POST',
data : { id : list_id, active: 'false' }
});
console.log(list_id);
}
});
});
Aucun commentaire:
Enregistrer un commentaire