Search
10784 results 7091-7100
Forum
- 30th May 2011Using DataTables in jQuery.Dialog() doesn't workcontains the DataTable. The initialising part is like this...
- 30th May 2011possible to keep dataTable height static (even when filtering)?Try this: [code] "fnDrawCallback": function () { fcmcAddRows(this, 10, 10); } [/code] As you had it it was calling the function on initialisation - not at the draw callback time (would have thought that would result in a JS error being thrown actually). Allan
- 27th May 2011Memory leak in fnClearTable()?usage drops back to initial value. I think that
- 27th May 2011aaData and deep property readingshow me what you initialisation code looks like? But
- 26th May 2011Column mis-alignment0] } ] [/code] to your initialisation code and that should
- 26th May 2011Slow when too many linesapart from your DataTables initialisation and then add it
- 26th May 2011Table Collapsing on Content - When Single Rowthe table is shown initially there is no scrollbar.
- 25th May 2011Change default classes of oClasses objectThis is done prior to initialising the DataTable: http://datatables.net/styling/custom_classes [code] $.fn.dataTableExt.oJUIClasses.sWrapper = 'whatever'; [/code] for example. Allan
- 24th May 2011Javascript Problem In TableToolsrefers to TableTools 1.x initialisation, which has changed for
- 24th May 2011Number of pages in pagination divIt wouldn't do since there isn't any code in DataTables to cope with that kind of initialisation. What you can do is just something like: [code] jQuery.fn.dataTableExt.oPagination.iFullNumbersShowPages = 10; [/code] Allan