Questions tagged [yadcf]

Yet Another DataTables Column Filter (yadcf)

This jQuery plug-in allows the user to easily add filter components to table columns, the plug-in works on top of the DataTables jQuery plug-in.

GitHub: https://github.com/vedmack/yadcf

Showcase: http://yadcf-showcase.appspot.com/

261 questions
1
vote
2 answers

yadcf>filter_type: “text”>filters_position: 'footer' fails to search

I'm having issue when search text box are in the footer position. The search box is not functional when setting filters_position: 'footer' to yadcf. When setting is removed the text search box do there thing. Anything else I need to do? Thanks in…
Pappas
  • 27
  • 4
1
vote
1 answer

Datatables Filter dropmenu

i Want to filter Datatables using this line data: ["Accepted", "Delivered", "Pending", "Cancel"], filter_default_label: "Select Status" but the data which will be filter is already in drop-menu [enter image description here][1] like here in the…
Hussein Zaki
  • 19
  • 1
  • 8
1
vote
1 answer

SCRIPT438 error yadcf

I'm just testing yadcf but I keep getting SCRIPT438 error in IE (in ff it is TypeError: $(...).DataTable(...).yadcf is not a function) and I'm quite sure my libraries are on the right place, I can browse them using developer tools What am I doing…
1
vote
1 answer

yadcf bootstrap datetimepicker is not displaying when ScrollX is set to true

I'm trying to use yadcf plugin using bootstrap datetimepicker for filtering dates in my datatable. The date picker is only visible when ScrollX is set to false. when set to true, the horizontal scrollbar appears then date picker is hidden behind…
1
vote
1 answer

sort custom date format in yadcf plugin

I am using jquery Datatables with moment.js and yadcf-plugin. In my table I have a datefield in the format dd.mm.yyyy - to sort it correctly I use the moment-plugin, this works great. But in the yadcf-filter, it is sorted as "alpha",…
berndy2001
  • 64
  • 6
1
vote
1 answer

YADCF - customFunc and exFilterColumn

I'm trying to use a custom filter on one of my columns and to do the filtering programmatically. I have managed to call the custom filter but the filterVal prints as null. Code below: Calling the filter: yadcf.exFilterColumn(theTable, [[4, "Value To…
Jack Boyle
  • 15
  • 5
1
vote
1 answer

YADCF Plugin - Get Date Function From Eonasdan Bootstrap Datetimepicker

How to get the dates from yadcf plugin date range? Because i want to get the dates and include it when saving my records to pdf
1
vote
1 answer

Add CSS Class to YADCF Select2 Container

I have a yadcf Select2 filter that looks like this: {column_number : 1, filter_type: "select", select_type: "select2", style_class: "subjectFilter"} I used style_class to add a CSS class called subjectFilter. This class shows up in the DOM, and it…
OverflowingTheGlass
  • 2,324
  • 1
  • 27
  • 75
1
vote
0 answers

DataTables Buttons - Take Column Titles From Footer

I have a DataTable that includes yadcf filters in the header. Therefore, when I use the export to PDF and Excel buttons, I would like the column titles of those reports to come from the footer of the DataTable. How would I accomplish that? My…
OverflowingTheGlass
  • 2,324
  • 1
  • 27
  • 75
1
vote
1 answer

yadcf: can exFilterColumn() work with columns which are not visible?

Please refer to https://codepen.io/louking/pen/vWYqRz When the datatables columns 5 and 6 are visible, the exFilterColumn() call filters the rows as expected, but when these are not visible (as in the codepen), the rows are not filtered. Can…
Lou K
  • 1,128
  • 2
  • 12
  • 31
1
vote
1 answer

YADCF - Trigger filter button in column header

I have a DataTable with dynamically added columns and data. YADCF is working great, but having all the filters showing at once is too much for the UI. I've seen solutions that have a filter icon next to each header title, and when you click the…
tylerl
  • 1,160
  • 1
  • 19
  • 41
1
vote
0 answers

Yadcf integrate with Meteor simple schema

I want to filter column header data from my tabular table. My goal is to filter: Numbers (greater than, equal etc...) Strings Dates as in the following example Thus I want to integrate the filters of yadcf with my tabular table by using the…
1
vote
2 answers

yadcf does not seem to work at all

I am using DataTables v 1.10.16, and yadcf v 0.9.1, with a range_date filter. The column header properly displays the input boxes for the dates, however I am getting the following two issues, making it unusable: 1) The date_format param is not…
snex
  • 11
  • 2
1
vote
0 answers

Toggle cumulative_filtering: true/false or similar functionality using deferRender: true

I started using yadcf and it works fine for my needs except for one thing, since I have quite a lot of rows for the datatable I use deferRender: true to speed things up. I would like to use yadcf with cumulative_filtering: true but since deferRender…
Berra
  • 11
  • 1
1
vote
1 answer

YADCF bootstrap datepicker support

Currently we're implementing yadcf to filter through the datatable. So far everything works fine but we're facing an issue with the date(time)picker for filter_type date/range_date. We consider the jQuery-ui datepicker not user friendly because you…