Search
11456 results 8951-8960
Forum
- 24th Jan 2013Customization of filters in many tables in the same pagesolved
- 31st Dec 2012Using filtering API on a hidden datatable.. possible?Allan, I ended up just positioning the datatable WAY out of the viewport. I'm going to revisit this as part of the infinite amount of technical debt that we accumulate through projects. :D Will post up a gist or jsfiddle with errors, sample markup and js to replicate the issue. In the meantime, here is the error I was receiving when the container that holds the table that is referenced to instantiate the datatable: Uncaught TypeError: Cannot read property 'oFeatures' of null It throws that when i call fnFilter on aforementioned datatable. Like I said, I'll come back to this to discuss a real solution for this (not just hiding it via absolute positioning). Thanks for your time Allan, you're posts and plugins have been most helpful here.
- 17th Sep 2012Filtering is not providing results properly- server side DatatableSounds like you might find this plug-in quite useful: http://datatables.net/plug-ins/api#fnSetFilteringDelay . Also make sure you are using sEcho in your server-side response as that is there specifically to stop out of sequence errors. Allan
- 14th Apr 2012Simple Column Filtering QuestionsMy question is, how should I change my links so that the drop down would just show Bob Lee? In the fnCreateSelect function (assuming you are using that) you would need to strip the HTML from the data that is used to build the select list. how do I disable the drop down menu for column five (in my case the column that has the edit and delete links)? Alter the caller of fnCreateSelect to not call it for the column(s) that you don't want it to operate on :-) Allan
- 14th Mar 2012Column filtering question: Don't add dropdowns to some columns using multi_filter_selectFigured it out. [code] $("tfoot th#usedropdown").each( function ( i ) { this.innerHTML = fnCreateSelect( oTable.fnGetColumnData(i) ); $('select', this).change( function () { oTable.fnFilter( $(this).val(), i ); } ); } ); [/code] And the tag: [code] [/code] EDIT: Bleh. Not working as I thought it would. Data in dropdown menu is wrong. Like if I use this: [code] [/code] Dropdown menu 3 (under 4th column) shows data from 3rd column. This should be from fourth.
- 2nd Nov 2011create xml file after filteringHi Allan, I have the same points as dazell before: Thank you for that helpful tool! :-) Is there already a feature implemented or planned to export the datatable to an xml-file? I already prooved the TableTools, they do this kind of job only (sorry ;-) ) for xls, csv and pdf. Has anybody else a selfmade solution? Maybe dazell himself? Best regards Emme
- 30th Sep 2011DataTables individual column filtering example (using select menus) with server side processing stry this url, http://datatables.net/forums/discussion/3931/server-side-filtering-on-specific-columns-with-input-and-select/p1
- 8th Sep 2011Filtering is not working properly when enter Key is presseddetails? link? code? you're not giving us anything to go on
- 31st Aug 2011How to realise custom filtering with server side procesing?I agree. DT is a great product. I hope more people start using it and also support development with donations. I am not the author, or affiliated with the product. This is an honest endorsement.
- 24th Aug 2011Searching (Filtering) Within a Specific PageGood point, I hadn't even considered that. I ended up with a solution where I keep track of how many records to skip on the server side, then preserve that number if the data was filtered so I can show the a subset of the same results on page 1. Thanks for the direction.