Searching input not showing

Searching input not showing

scharlischarli Posts: 1Questions: 0Answers: 0
edited May 2012 in General
I have this javascript
[code]

$('table.allajax').each(function(i){
$(this).dataTable({
"bInfo": false,
"iDisplayLength": 25,
"aLengthMenu": [[25, 50, 100], [25, 50, 100]],
"sPaginationType": "full_numbers",
"bPaginate": true,
"bDeferRender": true,
"aoColumnDefs": [{
bSortable: false,
aTargets: [-1]},{
asSorting: ["desc","asc"],
aTargets: [0]}],
"sAjaxSource": $(this).attr('ajax'),
"bServerSide": true,
"bProcessing": false,
"sDom": 't',
"fnDrawCallback": function(oSettings) {
$(this).find('a.borrar').each(function(j){
$(this).click(function(){
return confirm($(this).attr('title'));
})
});
}
});
});
[/code]

and this html:

[code]



CORREO VERIFICADO






Razón social
CP
Provincia
Estado






Crear






Pendientes de confirmar correo






Razón social
CP
Provincia
Estado











[/code]


This a two server-side script table with ajax both, the input search is not showing and im totally mad about why not is showing.

Any help?


Thank you show much
This discussion has been closed.