Search
10784 results 7101-7110
Forum
- 23rd May 2011Custom classes for specific instances of the tableyou can easily do it with just regular DOM or jQuery methods. $().addClass() etc Yes but only: - after the initialisation is complete (after .dataTable({}) call) or - for the elements that are there before the initialisation (table, thead, tbody, ...) Thank you!
- 19th May 2011Footer issues with TableToolstable is hidden at initialisation time. This code solves
- 16th May 2011Moving rows between tables, index fail?Using fnGetPosition(this)[0] instead of iRealIndex, I was able to get this working. http://jsbin.com/irotu3/2 I'm still unclear on why the fnRowCallback is initializing rows that haven't changed though.
- 15th May 2011Newbie - HELP!DataTables initialised. The DataTables initialisation code above is simply
- 14th May 2011Adding custom classes to pagination failingsPageButton is not an initialisation option, it's just an object parameter of $.fn.dataTableExt.oStdClasses (assuming you are not use jQuery UI theming). So you would do something like: [code] $.fn.dataTableExt.oStdClasses.sPageButton = "button"; oTable = $("#").dataTable({ "sPaginationType": "full_numbers", "bSortClasses": false }); [/code]
- 13th May 2011jump to last page by defaultYou could call fnPageChange( 'last' ); ( http://datatables.net/api#fnPageChange ) just after initialising the table. Allan
- 13th May 2011Datatables - Search from dedicated search pageThread number 5000 - cool :-) You can use the oSearch property to do this ( http://datatables.net/usage/options#oSearch ) just write your POST value to the oSearch.sSearch property and DataTables will apply that as the initial filter. Allan
- 12th May 2011Safari 5 not refreshing table with new datathe alert on the initial load (followed by the
- 11th May 2011DataTable 1.7.6. and table does not workI don't see any Javascript errors on the page now, but I also don't see any DataTables initialisation... I don't see where you are calling jQuery(..).dataTable(...) - could you show me where you are making that call please? Allan
- 11th May 2011Server side processing hangs at "Loading data from server"All of this works, initially. If I reload the