Posts

Showing posts with the label DATATABLES

Codeigniter - How to fetch datatable data from ajax?

Form  < table class= "table table-striped table-hover dt-responsive display nowrap" id= "amazonfees" > < thead > < tr > < th > User </ th > < th > Date </ th > < th > Invoice No </ th > < th > Amount </ th > < th > Shipping Charge </ th > < th > PG Listing & Other Charge </ th > < th > Storage Fee </ th > < th > Contractor Amount </ th > < th > Professional Amount </ th > < th > Rent Amount </ th > < th > Brokerage Amount </ th > < th > Sub Total </ th > < th > Action </ th > </ tr > </ thead > < tbody > </ tbody > </ table > JS < script type= "text/javascript" > $ . noConflict (); jQu...

DISABLE SORTING OF A COLUMN WHEN USING DATATABLES

$( '#orders' ). DataTable ({ "columnDefs" : [ { orderable : false , targets : [ 1 , 2 , 3 ] } ], "scrollCollapse" : true , "paging" : false , "sPaginationType" : "full_numbers" , "bPaginate" : true , "bLengthChange" : true , "bFilter" : true , "bSort" : true , "bInfo" : true , "bAutoWidth" : false , "bProcessing" : true , "dom" : 'Bfrtip' , language : { oPaginate : { sNext : '<i class="fa fa-angle-right"></i>' , sPrevious : '<i class="fa fa-angle-left"></i>' , sFirst : '<i class="fa fa-angle-double-left"></i>' , sLast : '<i class="fa fa-angle-double-right"></i>' } }, buttons : [ { ...