Search
23432 results 2881-2890
Forum
- 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 ???
- 13th Mar 2013Fixing left column, cause overflow in other columnsUpdate: The div with wrong width are dataTables_scrollHead and dataTables_scrollBody
- 20th Feb 2013Columns Header + ColVis + Boostrap (with Test Case) Issuethanks Allan for your quick answer, I tried but unfortunately the problem persists! the code I posted is correct?
- 8th Jan 2013one long row across all columnsThe closest DataTables comes to that is something like this: http://datatables.net/release-datatables/examples/advanced_init/row_grouping.html Allan
- 2nd Jan 2013Totalling number columns including commas (e.g. 1,234.56)Its not a display plug-in - its a sorting plug-in. So it effects the sorting, not the display. If you want to actually add number formatted you'd do so using an mRender function. Allan