Search
11456 results 8901-8910
Forum
- 19th Sep 2018Custom filters are even more brokensettings.nTable.id !== "tableIdOfInterest" ) { return true; } // filtering logic for `tableIdOfInterest` } ); Yes
- 27th Jun 2018Adding additional filtering row headerI suppose it is an extenstion of that thread but not the same - first thread lead me to a potential solution - now I am trying to implement
- 26th Jun 2018change cell data by row and column indexes or filtersthanks again @Colin, using row id's to select rows make more sense now because of the ever-changing order as you said. I'll use id's to select rows.
- 12th Jun 2018Checkbox Filtering as And-OperatorHi Colin, I don't know what to say.... I'm speechless. Thank you so much for your help. That's great!! Cheers, NIklas
- 22nd May 2018Fixed Filtering not workingHi @rahulcapgemi That live fiddle would help with this one - there's a lot going on with those columns. Cheers, Colin
- 20th Apr 2018Server-side processing with custom checkbox filteringHi, did you manage to find a solution for this?
- 13th Apr 2018Filtering currency not working properlyDataTables will search on the original data, so if your original data is $1,200, then you'd need to search 1,200 (i.e. with the comma). If however you use DataTables to format a number (e.g. 1200), then yes you would be able to search on just 1200. Allan
- 12th Apr 2018SearchPanes - Where are The Filters?edit Sorry. Replied without refreshing to see the latest discussion. Ignore me :) Allan
- 14th Feb 2018I need to hide the excel/pdf/print buttons and searchbox on datatable when no result on filteringA plug-in for this sort of thing was contributed a while back which might be of some interest. Allan
- 9th Aug 2017Editor Dropdown FilteringTurns out that example had exactly what I needed! I had the client-side columns[].data option and the editor.fields[].name option set to the same thing. I needed to add a JOIN on the server-side, add the joined field to the editor instance server-side and put the joined table's field in the columns[].data option on the client-side. All good now, thanks a ton!