Search
5703 results 371-380
Forum
- 21st Mar 2013Server side paging problem in IEThanks Allan, JSON data from server was fine. I am also using a cookie to restore the last iDisplayLength. The cookie get function did not convert to number. Thanks again! Just an idea... maybe you could convert to integer and create error message if that fails? Alexander
- 17th Nov 2012For *long* tables, how about improved paging feature with ranges?You might be interested in this plug-in which integrated DataTables with jPaginator: http://datatables.net/forums/discussion/12319/paginator-like-remylab.github.comjpaginator/p1 Allan
- 12th Sep 2012DataTable paging issueCurrently no - there is no built in way for DataTables to ignore rows. Having said that, there is a workaround - use a bit of jQuery / Javascript before the table is initialised and remove the hidden rows, then reattach them with fnDrawCallback. A bit nasty, but that's the only way to do it with DataTables at the moment. Allan
- 11th Jul 2012Paging is reset to first pageYes, exactly:D
- 13th Apr 2012issue with pagingCan you link me to an example showing the problem please? You are right it should be showing from 131 onwards. Allan
- 28th Mar 2012iDeferLoading and paging with initial server-side filtering?Hi Allan - I just saw a mention of this in the 1.9.1.dev notes, very glad to see this enhancment go in. Thanks very much! Larry
- 20th Feb 2012IE9 Error on V1.9.0 with full number paging1.9.1 (which is the stable version of 1.9.1.dev, the currently nightly) will be released at the end of the month. That will give enough time for all the dust to settle after the 1.9.0 release, since it was fairly major! Allan
- 15th Feb 2012Error-handling for server-side pagingThanks for the quick reply Allan! I'll set up the fnServerData and repost if I have any issues. Cheers!
- 24th Oct 2011paging with "full_numer" css requiredThank you Allan for all your patience. I have been on vacation for a little. There is no way for me to send you a link since its an internal site. Here is how the datatable is defined: var oTable = $('#myDataTable').dataTable({ "bServerSide": true, "sAjaxSource": "GetSales", "bProcessing": true, "bJQueryUI": true, "sPaginationType": "full_numbers", "aoColumns": [ { "sName": "NAME" }, { "sName": "STATUS" }, { "sName": "TRANSFERCOMMISSION" }, { "sName": "RESIDUALCOMMISSION" }, { "sName": "IMTUCOMMISSION" }, { "sName": "ID", "bSearchable": false, "bSortable": false, "fnRender": function (oObj) { //return 'View'; return ''; } } I also have all the classes defined in my cshtml page. I wonder if this works differently with .net mvc? .example_alt_pagination div.dataTables_info { width: 40%; } .paging_full_numbers { width: 400px; height: 22px; line-height: 22px; } .paging_full_numbers span.paginate_button, .paging_full_numbers span.paginate_active { border: 1px solid #aaa; -webkit-border-radius: 5px; -moz-border-radius: 5px; padding: 2px 5px; margin: 0 3px; cursor: pointer; cursor: hand; } .paging_full_numbers span.paginate_button { background-color: #ddd; } .paging_full_numbers span.paginate_button:hover { background-color: #ccc; } .paging_full_numbers span.paginate_active { background-color: #99B3FF; }
- 18th Oct 2011Paging info incorrect[scratch that. read that you have the solution]