Search
10712 results 2501-2510
Forum
- 5th Mar 2014DataTables replaces the global filtering string " with " at initialisation timeIn other words, jQuery $().val() already converts special characters to HTML entities.
- 22nd Feb 2014ColReorder doesn't reorder if order matches initial orderI think, just like your other threads, the issue is you are creating multiple instances on a single table. Perhaps ColReorder should throw an error (and my documentation should be better). If you apply the rules we've discussed in the other threads it should work okay: http://jsfiddle.net/8SETk/1/ Allan
- 3rd Feb 2014oTable Initialisation ProblemAllan thank you for your reply. That makes perfect sense. love the current version and looking forward to 1.10.. :-)
- 6th Jan 2014Change ajax source after initial load.The fnDestroy is what I was after, the event binding etc I can deal with. Thanks! :-)
- 11th Jul 2013Enable/Disable features after initializing the tablethat you cannot alter initialisation options after the table
- 1st Jun 2013How to select a specified row after initializing the datatable complete...If you are using TableTools use the fnSelectRow function. If you aren't - link to a test case please: http://datatables.net/forums/discussion/12899/post-test-cases-when-asking-for-help-please-read . Allan
- 26th Apr 2013help with Initialisation codeOh I see. I understand it now. Thank you!!
- 22nd Apr 2013Initial sorting on date-rangeOk thanks anyway :-).
- 20th Mar 2013Row background color the same for all rows after initialisationI just realized I have the Row highlight function on mouseover applied too: $("#usrSearch tbody tr").each(function () { $(this).mouseover(function () { color = $(this).css("background-color") $(this).css("background-color", "#A9D1DE"); }).mouseout(function () { $(this).css("background-color", color); }); }); I remmed it out and the table looks fine now. Can this still be applied and also have the alternating row colors or not?
- 13th Mar 2013Initial Data Set - Google index friendlyYup, you can use iDeferLoading to accomplish that job.