Search
23531 results 2891-2900
Forum
- 10th Oct 2013Loading 500 rows (15 columns, most hidden) in DataTables is very slowServer-side processing is pointless without paging to be honest, since al rows are needed up front anyway. How long does the server take to respond to the ajax request? Can you please link to a test page as noted in the forum rules. Allan
- 7th Oct 2013.fnAddData removing columns classesExcellent :-)
- 26th Aug 2013Splitting datatable into multiple columns (grid view)Very cool indeed, but as I say, I'm afraid not something that I can support at the moment. I am interested in what you come up with, but v1.10 is taking my priority at the moment rather than experimental new features. Sorry. Allan
- 4th Aug 2013Modify data in one column based on data value in another column or columnsok, so I've stumbled into an answer, or at least a partial answer. 'full' is the full array of data for the row (I'm not sure how it differs from 'row'), so I can get the data from a particular column by referring to its index for the above example... [code] "aoColumnDefs": [ { "aTargets": [ 1 ], "mRender": function ( data, type, full ) { if(full[0] < 0.25){ return ''+data+''; }else{ return data; } } ] [/code] I've run into some issues due to the fact that I have complex headers in the actual table, as well as others, but it's a start
- 25th Jul 2013Table with 2 Fixed columns, scroll-x and with no sorting first columnCan anybody help please ?? :(
- 16th Jul 2013ColReorder-1.0.8 + jquery.dataTables.columnFilter.js and filtering reordered columns.Another issue/feature I found relevant to get this whole thing working http://code.google.com/p/jquery-datatables-column-filter/wiki/ColumnFilter
- 13th Jun 2013search value for other than datatable columnsyou can use fnServerParams see the reference documentation on http://datatables.net/ref [quote] It is often useful to send extra data to the server when making an Ajax request - for example custom filtering information, and this callback function makes it trivial to send extra information to the server. The passed in parameter is the data set that has been constructed by DataTables, and you can add to this or modify it as you require. [/quote] you can push the value of your checkbox onto the aoData array [code] $(document).ready( function() { $('#example').dataTable( { "bProcessing": true, "bServerSide": true, "sAjaxSource": "scripts/server_processing.php", "fnServerParams": function ( aoData ) { aoData.push( { "name": "status", "value": $('#my_secret_checkbox').val() } ); } } ); } ); [/code]
- 5th Jun 2013Is Fixed Columns Plugin (v.2.0.3) supposed to have IE7 support?I wasn't aware of any issues in IE7 with 2.0.3, but it sounds like its only some of the more complex examples which don't work? However, IE6/7 support for FixedColumns is effectively at an end now. This commit as part of the work in 2.5 terminates IE6/7 support in FixedColumns: https://github.com/DataTables/FixedColumns/commit/1124405 . Having said that, if there is a simple fix, I'm happy to release 2.0.4 with it. Allan
- 19th May 2013sort by checkbox columns doesn't workthanks kkopczyk
- 26th Apr 2013fixed columns and radio buttonsAnyone ???