tengo una tabla en el cual tengo en una columa con el nombre disponible. esta checado o no con un input checkbox tengo el sigueinte codido.
Código PHP:
<script>
// Call template init (optional, but faster if called manually)
$.template.init();
// Table sort - DataTables
var table = $('#sorting-advanced');
table.dataTable({
'sPaginationType': 'full_numbers',
'sDom': '<"dataTables_header"lfr>t<"dataTables_footer"ip>',
'bProcessing': true,
'bServerSide': true,
'sAjaxSource': 'themas/<?=$dom_13;?>/<?=$dom_14;?>/consulta.php?tabla=<?=$tabla;?>&sucursal_id=<?=$sucursal_id;?>&modulo=',
'fnInitComplete': function( oSettings )
{
// Style length select
table.closest('.dataTables_wrapper').find('.dataTables_length select').addClass('select blue-gradient glossy').styleSelect();
tableStyled = true;
$('input.switch').styleCheckable();
},
'bAutoWidth': false,
'aoColumnDefs': [
{'bSortable': false, 'aTargets': [ 1,2,5 ] }
],
'aoColumns' : [
{ sWidth: '6%', sheight:'28%' },
{ sWidth: '15%', sheight:'28%' },
{ sWidth: '10%', sheight:'28%' },
{ sWidth: '30%', sheight:'28%' },
{ sWidth: '29%', sheight:'28%' },
{ sWidth: '10%', sheight:'0%' }
]
});
</script>