Search
9302 results 421-430
Blog
- DataTables download statistics - 2019 › Overview › StylingDataTables contains a variety of styling options. The most popular option is the default DataTables styling framework with 56.4% of the share of requests. The next most popular is Bootstrap 3 with 25% of requests.
- Debugger updatea display with four options for actions to take:
- RowGroup - new extension › Future workSupport for Button's export options - currently the grouping information
- Queuing changes in Editor › Local table editingNote that the Editor options have be placed into
- Locale based sorting › Future developmentIntl doesn't just offer options for sorting, but also
- Deep linking into DataTables › Usagean array of the options that you wish to
- Cascading lists in Editor › Server-side › PHPREQUEST['values']['continent']] ) ->fetchAll(); echo json_encode( [ 'options' => [ 'country' => $countries
- Always visible editing panel › Customise away!just use the default options - they should, and can,
- Generator update › Easier form inputshowing all of the options available, all at the
- Dynamic enum sortingDataTables to define ordering options for all data sets.
Forum
- 5th Sep 2010Scrolling bug, not working properly with Column Filtering\Sorting optionsscroll the Column Filtering\Sorting options, because their sizes are
- 12th Feb 2010Editable with Select box of optionswith a list of options in a select box
- 20th Nov 2009default table display length and optionscustomize the display length options. Also passing the default
- 24th Sep 2025Is it possible to change the icons in searchpanes options?You'd either need to use some CSS to hide the current text and replace it with a Font awesome icon, or modify the library a little. The ability to customise the icons is something I can look at in future, or I would welcome a pull request. Allan
- 16th Jul 2025Bug Report: SearchPanes Column options are cut off unexpectedly when using download builderHi, I've committed a fix for this issue. I'm too embarrassed to say just how long it took to find this - a simple fix in the end, but I went around in circles to find it. A daft mistake in the original code (SearchPanes is over due for a rewrite). Allan
- 14th Nov 2024Header colspan in optionsI just migrated my code to Vue and am using the DataTables component like this: <CustomDataTable v-if="tableData.length > 0" :data="tableData" :columns="tableColumns" ref="dataTableRef" /> But i have not found a way to use a ComplexHeader with this method, is there a way? My objective:
- 6th Nov 2024Use of !important limits the options for CSS customizationIt isn't necessary as such - it could be replaced with more selective statements. I am trying to remove them as I go around doing various house keeping tasks. In many cases they help keep the CSS smaller, but I do recognise that they can be annoying. I'm slowly moving things over to CSS variables which makes colour customisation much easier. I had thought I'd done that already for the paging buttons, but apparently not. Added to the list! Allan
- 8th Aug 2024Datatables Editor Fields options list from DBAh!!! I clean missed that as well. Well done spotting that - it could have been a long head scratcher that! Allan
- 11th Mar 2024Layout options not workingMy expectation was that the 'pageLength', 'info' and 'paging' elementts would be on a single row with 'pageLength' on the left, 'info' in the centre and 'paging' on the right. Not with that confiuration. top and topStart/topEnd are actually two different rows - see the diagram at layout. You can use an array to put them all into top and then a little CSS to spread them out if you like though: https://live.datatables.net/vezewaro/1/edit . I think I'll probably put CSS like that into DataTables 2.1 by default, as this has popped up a few time for how to get items onto the same row. Allan
- 23rd Dec 2023How i can change options in Basic Select where shows, how many entries will be?You can customise that with lengthMenu - there are examples on that reference page. Colin