Search
5738 results 371-380
Forum
- 12th Jul 2013add paging functionality to user define buttons.Sure - use the fnPageChange API method.
- 23rd Apr 2013Styling processing badge/thing on server pagingWhen I add the above class to my existing loading div, it just ends up floating it over the table regardless which isn't what we are looking for at all. You want to use an external node, rather than the one used by DataTables? Sorry, I didn't understand that before. Just adding the DataTables class to your node would of course just apply the styles for that class to the element, so yes, that would be useless. If you want to use a node external to the table, use the processing event (which is an event not an initialisation option): [code] contractTable.on( 'processing', function ( e, o, processing ) { ... } ); [/code] Allan
- 4th Apr 2013Why is _fnRowDeselectAll called when paging?Right on. I trust it is fixed in the latest version (as seen in the example you posted). I'm in the unfortunate position of having to alter the behavior of a rather elaborate customization of DataTables+TableTools, written by someone else. Unfortunately, it incorporates old versions of both libraries, so dropping in updated TableTools and DataTables will break it. Doesn't help that, while I'm competent in js and jquery, I'm no expert. I just have to find a way around it. Thanx again for your time.
- 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