Search
10712 results 6881-6890
Forum
- 7th Dec 2011Multiple DataTables and Footeris happening in the initial page load, I am
- 7th Dec 2011Datatables_scrollheadinner set to a ridiculous amountAre you initialising the table inside a
- 6th Dec 2011Jquery Ajax issuewhere is your DataTables initialisation? There is no call
- 3rd Dec 2011server side processing: processing indicator continues to show though the ajax response was receivedpassing aoData as an initialisation parameter as well as
- 2nd Dec 2011Setting aLengthMenuHi Bob, You need to set the initial paging length to -1: http://datatables.net/ref#iDisplayLength . The aLengthMenu parameter doesn't effect the initial value, only the values that the user can pick from. Allan
- 1st Dec 2011Datatable FixedColumns row selectionDataTable object? [code] /* * Example initialisation */ $(document).ready( function () { var oTable
- 30th Nov 2011change sDom parameterYou should set up the drop down list like this: [code] $(document).ready(function() { $('#example').dataTable( { // change the drop down list "aLengthMenu": [[10, 25, 50, -1], [10, 25, 50, "All"]], // set the initial value "iDisplayLength": 50 } ); } ); [/code] see http://www.datatables.net/ref#aLengthMenu
- 29th Nov 2011add new columns post-ajax request -- alter aoColumnDefs on the fly?column definitions on-the-fly after initialisation. You would need an
- 29th Nov 2011Serverside Processing GATEWAY errors ...which includes a new initialisation parameter called sServerMethod which
- 28th Nov 2011Full_numbers pagination Next Button/iDisplayStart problemI finally figured it out. The problem was not with iTotalRecords or iTotalDisplayRecords, but with the initial iDisplayLength - setting. those were strings and thus created the strange behaviour.