first commit

This commit is contained in:
maher
2025-10-30 13:13:41 +01:00
commit ecd64aad53
404 changed files with 82238 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
$(".check-groupe").change(function () {
related = $(this).attr("data-related");
operation = $(this).prop("checked");
console.log(related);
console.log(operation);
$.post( pathAjaxUpdate, {related:related, operation:operation}, function( data ) {
console.log(data);
}).fail(function(response) {
console.log(response.responseText);
});
//$("input:checkbox").prop('checked', $(this).prop("checked"));
});