Search
11152 results 8921-8930
Forum
- 10th Feb 2014Questions in regards to Client Server securityneed to do all sorts of clever things, defining
- 7th Feb 2014Only one column has coloringDataTables' CSS applies colour according to the currently sorted column. Read the docs on styling.
- 5th Feb 20141.10 and server-side table joinsproblems with multiple column sorting and searching on using
- 30th Jan 2014Help ScrollXAllan, thanks. Added some other elements to your CSS to remove the sorting. Very good your work. [code] div.dataTables_scrollBody thead th, div.dataTables_scrollBody thead td { line-height: 0; opacity:0.0; width: 0px; height:0px; [/code] Thanks
- 30th Jan 2014why color of cells of two columns are different ?DataTables will highlight the column that is being sorted (in this case the first column). Use bSortClasses to disable that if you want to. Allan
- 29th Jan 20141.10 data link brokenextras for typical column sorting? No. Sorting is built-in
- 23rd Jan 2014Zurb Foundation 4 and Horizontal Scrollingare not aligned. When sorting by other columns (or
- 20th Jan 2014afnFiltering function never calledenabled, then the processing (sorting, filtering etc) is done
- 15th Jan 2014iTotalRecords retrieved by AJAXfiltering turned on or sorting. All requests are server
- 13th Jan 2014TypeError: aData is undefinedThat's precisely how I solved the problem. I added the sAjaxDataProp to my JavaScript: $(document).ready(function() { $('#example').dataTable( { "sDom": "Tfrtip", "aaSorting": [ ], // Prevent initial sorting "sAjaxSource": "../jsp/functions.jsp", "sAjaxDataProp": "", "bProcessing": true, "aoColumns": [ { "mData": "name"}, { "mData": "phone" } ] } ); } );