Search
9149 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
- 8th Sep 2023How to set the order of SearchPane optionsClever :). The other option would be to use the searchPanes.dtOpts parameter and set the order parameter to [[1, 'desc']]. Allan
- 18th Apr 2023How do I make a particular Column fixed in my Table ? I don't need right or left column optionsYes, sorry we didn't get back to you. I think it is possible through a combination of ColReorder and FixedColumns' fixedColumns().left() method, which you can use to get / set the number of fixed columns. But it isn't something I've tried before, so I can't say for certain if it would work or not. Allan
- 6th Mar 2023Can rows and columns be combined in export options and for selected rows only?With columns, that can be made invisible with column().visible() - there isn't an API call to make rows (in)visible, so that wouldn't be the case here. If you've used some other method to hide them, you can pass a function into that row-selector (where ':visible' currently is) that uses logic to check for the row's visibility, Colin
- 28th Nov 2022How do I set a server directory path in export options?You can do it on the server-side sure. Use whatever programming language you are using to create a file. On the client-side you can generate a file and then tell the browser to download it, but you can't specify where to. If you want to create a file client-side with the data from a DataTable, use the Buttons extension. Allan
- 11th Oct 2022export button options for excluding columnsSee if this Buttons export columns selector example answers your question. Kevin
- 9th Aug 2022?ColumnFilterWidgets: Numeric sorting via options?You could consider our SearchBuilder extension. Allan
- 9th Jun 2022Column width configuration options - Join w/BulmaI'm not sure how this works in other browser's but in Chrome when you inspect the select element you can make changes to see how they affect the styling. For example: Unchecking that CSS seems to move and align the right side of the input with the right side of the cell. Scroll down a bit more to find this CSS: Turn off padding-top and padding-bottom. With those three changes it looks like this: In your style section you should be able to override these settings. Kevin
- 27th Apr 2022SearchBuilder how I to remove the "Right" and "Left" optionsSame as this thread, please don't duplicate posts. Colin
- 17th Jan 2022Editor: Creating a Dynamic Select Label Value OptionsHi, my Group Select field always shows the first option That will happen if the value of the field being edited (i.e. the value of templates.group for this row) is not available in the list of option values (GroupID in this case). It is important to note that this is strongly typed as well, so it is possible that might be the cause of the issue. If you can give me a link to your page I can help to debug the issue. Allan
- 4th Jan 2022PDF export page optionsThe exportOptions docs don't show that it will accept a function for the selector-modifier option. You could try an anonymous function to return the setting but it might not be applied dynamically. A better option might be to create two buttons; one for all and for current. If you don't want both displayed you could use button().add() and button().remove() to swap buttons based on the user input. Or you can use button.node() to toggle a class that hides the buttons. Kevin