Search
9310 results 4371-4380
Forum
- 26th Aug 2016Select missing, Submit -> System ErrorThere are various options to use CSS selectors for a class name with a dot in it - see this SO thread for example. Allan
- 26th Aug 2016aButtons export csv contentFirstly I would suggest you ditch the legacy TableTools plug-in, it is no longer supported. To do what you want with Buttons (TableTools' replacement) there are two options - see these examples: Export options Orthogonal data Allan
- 25th Aug 2016Request: Allow DataTables website search to sort by dateIt does actually take the date into account and gives newer posts higher ranking. However, an explicit forum search which provides that options is a good idea. Thanks for bringing this up. Allan
- 25th Aug 2016Edit with a value not present in the dropdown listUse: .edit($(this).closest("td"), false, { submit: 'changed' } ) See the submit option's documentation in the form-options object. Basically it just tells Editor to submit only the changed values rather than everything. Allan
- 25th Aug 2016Pagination controls container outside datatable areaso under the support options. If you want to
- 25th Aug 2016Editor - format input field to decimal/currencyits full set of options are I'm afraid. I
- 25th Aug 2016Multi-Level Collection Sylinglist of page length options. I agree that there
- 24th Aug 2016$.ajax load select option via dependent()you can specify Ajax options when you call dependent().
- 24th Aug 2016Is there an on select autofill feature for Join tables?Did you try either the dependent() method or using your own change event listener? They could make an Ajax request to get the options (or value if its only one value) for the child field. Allan
- 23rd Aug 2016Can't change/set pageLength?You are attempting to initialise the same DataTable two different ways: <script type="text/javascript">$('#table_id').DataTable( { responsive: true } ); </script> <script type="text/javascript">$('#table_id').DataTable( { pageLength: 25 } ); </script> See this section of the manual for how to initialise a table just once, with multiple options. Allan