Search
9302 results 451-460
Blog
- DataTables 1.10 beta › Major new features › New siteneed for using the options, events and APIs of
- Alphabet input search - Part IIIsome of the search options and APIs for extending
- Alphabet input search - Part IIthe DataTables custom search options, API and feature plug-ins,
- Alphabet input search - Part Iand easily. DataTables' search options have come along way
- Orthogonal data › mData as a functionpost Extended data source options with DataTables), and DataTables
- localStorage for state saving › Don't change an API!fnStateLoadCallback and fnStateSaveCallback initialisation options and wishes to update
- Inline editing › Conclusioninput at the moment - options such as select inputs
- Introducing Editorto the number of options that can be used
- DataTables debuggerhuge range of configuration options and debugging the application
- Site updates - JS Bin and moreAPI methods and initialisation options). I'll increasingly be using
Forum
- 22nd Apr 2020Is there a way to limit the number of options on the pager for mobile devices?Thanks Colin, that was right on point... for future readers I added a bit of code to adjust depending on the screen size. const GetPageingType = function(){ console.log(screen.width); if (screen.width < 321) {return "full"} // iphone se else if (screen.width < 421) {return "first_last_numbers"} //pixel 4 else {return "full_numbers"} //"desktop" } I could use other types, but this will work for me. Also I wrapped the page length and paging on classes, so I can also adjust positions by using sDom:'<"top">rt<"dt-bottom"lp>' iPhone SE Pixel 4 Desktop
- 15th Apr 2020Datatable filter optionsBy default, it will search across the entire table - see here. We're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 9th Apr 2020How to display 'Options' in a DataTable not using DataTable Editor?Hey Colin, Thanks for the quick reply. No, we were not using the editor but trying to use the editor functionality. I think that's the big problem. I'm going through the editor documentation now and I think I'm understanding more. Thanks again for the quick reply and sorry if this was a half baked question, but still understanding dataTables. Thanks, Greg
- 26th Mar 2020Documentation issue -- reference options processingThank you for letting us know. I've raised it internally (DD-1390 for my reference) and we'll report back here when there's an update. Cheers, Colin
- 19th Mar 2020Template: Why is my select without options when using within a template?Solved it. I moved the $.ajax that fills my into: editor.on( 'open', function () { });
- 18th Feb 2020Landscape Option Not Showing in Google Chrome Print Preview OptionsThanks I am solved with add style code between head tag @media print{ @page { size: landscape; } }
- 23rd Jan 2020where in options seam not workingAnyway I solv it with in another way.
- 21st Jan 2020How can I remove options that aren't applicable to current filter?Allan posted this example in another thread: http://live.datatables.net/gejojiqu/1/edit Kevin
- 16th Jan 2020PDF Button extend options -- messageTop not working with doc.content[1].table.widthsHi, my coworker just found the following, which solves the problem. (I did search myself but apparently wasn't using the right terms.) https://datatables.net/forums/discussion/35884/pdf-export-cannot-customise-column-widths-and-add-message
- 16th Oct 2019how to filter select fields options ?Thanks a lot again in fact there were 2 mistake in my code (use () and ? : choice... ever the > operator was set // wrong ->where( function($q, $F) { $q ->where( function($r) { $r ->where('ID',($F)?$F:0,'>'); }); } ) // correct ->where( function($q) use ($F) { $q ->where('ID',($F)?$F:0,($F)?'=':'>'); } ) B)