Click here to Skip to main content
15,888,351 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi ,

I need Help in Datatable.js plugin

By dafault in this js paging button is from 1-5, I have 2000 + records, so I want to increase the default paging to 1-10 or more.

Thanks in Advance
Posted
Updated 9-Aug-12 20:49pm
v2

1 solution

I am using following code


C#
a = "Ajax/GetTickets.ashx?eid=" + eventid;

           tTable = $("#ticketsTable").dataTable({
               bProcessing: true,
               bServerSide: true,
               sAjaxSource: a,
               fnServerData: fnDataTablesPipeline,
               fnDrawCallback: afterTableDraw,
               fnInitComplete: drawBorders,
               // sScrollYInner:"20%",
               // aaSorting: [[4, "asc"]],
               //   bPaginate : false,
               //  aoColumns: [null, null, null, null, null, { bSortable: false}] ,
               //                sPaginationType: "full_numbers",
               "sScrollY": "200",
               "bScrollCollapse": true,
               "iDisplayStart": displayStart,
               "iDisplayLength": lastIndex,
               "bScrollInfinite": true,
               "bScrollCollapse": true,
               "sScrollY": "100px",
               "iScrollLoadGap": 10,
               bJQueryUI: true,
               oLanguage: { sProcessing: "", sZeroRecords: "SeatKarma found no tickets for this event.", sSearch: "", oPaginate: { sNext: ">", sPrevious: "<"} }
           });
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900