amigos lo solucione , pero si alguien me colabora mejorando el codigo bienvenido sea
Código Javascript
:
Ver original$(document).ready(function(){
$('.input_control').change(function(){
var checkeado = $(this).attr("checked");
if(checkeado) {
//alert('activado');
$('input[name='+ $(this).attr('value')+']').attr('value', 1);
} else {
//alert('desactivado');
$('input[name='+ $(this).attr('value')+']').attr('value', 0);
}
});
$(".check_todos").click(function(event){
if($(this).is(":checked")) {
$(".input_control:checkbox:not(:checked)").attr("checked", "checked");
$(".q").attr('value', 1);
}else{
$(".input_control:checkbox:checked").removeAttr("checked");
$(".q").attr('value', 0);
}
});
});