Search
10140 results 4781-4790
Forum
- 15th Jul 2011iPad/touch/swipe with Scrollerany scrollbars shown by default (in iOS 5 it
- 15th Jul 2011field-item as list not divdisplay, which is by default displaying through <div> call,
- 14th Jul 2011[Help] alignment TD in DataTablesaccordingly. Decide what your "default" column will use for
- 12th Jul 2011datatable - information placingtheir own line by default. If you place them
- 11th Jul 2011Help to customize events of pagingYou could add in a return false; into your function which will stop the event bubbling. You would likely also want to unbind the event listeners that DataTables added by default, to make sure ($(...).unbind() and $(...).die()). Allan
- 10th Jul 2011Style both rows in theadWhich version of DataTables are you using? In 1.8.x it should be that the sorting class is, by default, applied to the bottom row - this can be overridden with http://datatables.net/ref#bSortCellsTop . Allan
- 8th Jul 2011How To: MySQL FullText searchingtrue; $fullText_order = " relevance desc "; // default to descending since higher
- 6th Jul 2011Export PDF after doing some JavascriptSince you are replacing the default fnClick with your own function - you need to replicate the fnClick code that TableTools uses: https://github.com/DataTables/TableTools/blob/master/media/js/TableTools.js#L2254 Allan
- 5th Jul 2011Possible to disable sorting of multiple columns?You could unbind the default event listener and attach
- 5th Jul 2011Search Filter helpYou would need to bind a custom filtering event handler (and unbind the default one) to the input box - similar to what is done here: http://datatables.net/plug-ins/api#fnSetFilteringDelay . Then your function would need to set the sorting as required using fnSort(). Allan