- New Feature, filters can be placed in the footer or header vedmack#85
- New Feature, filter_type: 'custom_func' support state saving vedmack#92
- New Feature, Select2 allow use of placeholder with allowClear properties vedmack#91
- Bugs fix vedmack#89 vedmack#68 (sub issue)
- New feature, added initFilterMultipleTables function, one (currently only filter_type: "text") filter for multiple tables - filter at once! vedmack#80
- New feature, added exResetAllFilters function: Allows to reset all filters externally/programmatically (support ALL filter types!!!) , perfect for adding a "reset all" button to your page! vedmack#78
- exGetColumnFilterVal support new Datatable (Capital "D") https://groups.google.com/forum/#!topic/daniels_code/4ryW4_0P2EE
- Fixed IE8 issues vedmack#73
- Migrated to MIT license vedmack#82
- Better support for columnDefs
- Date filtering with server side configuration will send the value / from-to (if range date) as is (without converting into milliseconds)
- Bug fixes
- Added new filter type: filter based on custom function, filter_type: "custom_func". Read docs (in yadcf js) and see showcase example http://yadcf-showcase.appspot.com/DOM_source.html, vedmack#61
- exFilterColumn is now support sever side mode (non range filters only) vedmack#69
- Fixed range sliders combined with filter_container_id property vedmack#68
- Escape special chars in multi select filter vedmack#74
- Additional minor bug fixes
- Added integration with Datatables new API (Capital "D") - use new yadcf init function, yadcf.init(table, array of objects); usage example: http://yadcf-showcase.appspot.com/DOM_Ajax_Multiple_1.10.html
- Added integration with Select2 plugin vedmack#63
- Added integration with DataTables ColVis plugin vedmack#56
- Added support for server-side processing filtering(1.10.0) - all filters are fully working on server-side processing
- filter_delay is now supported in text / range_number / range_date filters / range_number_slider filters, this option can be really handy when working with server-side processing (but not only)
- Added optional delay (usage example filter_delay: 1000) for filter_type: "text" (allows to delay filtering while typing characters) vedmack#51
- Allow hide filter reset button for filter_type: "multi_select" vedmack#55
- Added placeholder for multiple select mode (without Chosen integration) vedmack#54
- Added another external API function : exGetColumnFilterVal, Allows to retrieve column current filtered value (support ALL filter types!!!) vedmack#45
- "data" property supports array of objects [{value: 'Some Data 1', label: 'One'}, {value: 'Some Data 3', label: 'Three'}] (supported in select / multi_select filters) vedmack#48
- Bug fix vedmack#49
- Several code optimizations
- Reimplemented exFilterColumn to support ALL filter types!!! + Now it can be used even for multiple pre filtered columns vedmack#46
- Bug fix vedmack#47
- Added new filter type: multiple selection, filter_type: "multi_select". With or without Chosen plugin support (select_type: 'chosen') (vedmack#41) , thanks goes to Ryan Harris vedmack#23
- Added support for the DataTables 1.10.0-beta.2 vedmack#38
- Bug fix vedmack#42
- Bug fix
- Added new filter type: text input (a simple input text) filter_type: "text" (vedmack#34)
- Added new feature: case_insensitive, can be set to false or true (default) (vedmack#35)
- Added new mode "startsWith" for filter_match_mode (vedmack#37)
- Added new feature: hide filter reset button (merged pull vedmack#30 <- Thanks to Gator92)
- Added integration with Chosen plugin (for the select filter)
- For the integration with Chosen: added two new attributes, 'select_type' to allow turning of simple select into chosen select and 'select_type_options' used to pass an object to the chosen constructor , don't forget to include the chosen js file and read/look at the docs/showcase
- Added new filter type: date input, make use of the jQuery UI Datepicker widget, filter_type: "date" (vedmack#26)
- Several code enhancements
- Added support for bStateSave vedmack#22
- Added support for bDeferRender vedmack#25
- Added support for mData (including deeply nested objects) vedmack#20
- Bug fix
- New feature: filter_match_mode, Allows to control the matching mode of the filter (supported in select and auto_complete filters), Possible values: contains / exact
- Added first external API function : exFilterColumn, allows to trigger filter externally/programmatically (currently support only filter_type : "select") , perfect for showing table after its being filtered (onload) (vedmack#14)
- Added support for aoColumns { "bVisible": false } (vedmack#16)
- Added support for column_data_type & html_data_type in Range Number Slider Filter (vedmack#15)
- Added new attribute to yadcf constructor: ignore_char, Tells the range_number and range_number_slide to ignore specific char while filtering (that char can used as number separator) vedmack#9
- Fixed autocomplete in external container (thanks to tobbi007) https://github.com/vedmack/yadcf/commit/716fdd0d3c11ada048a51dd5ec9bbd9213b5ea8d
- Added new filter type: range between two dates with jQuery UI Datepicker widget, filter_type: "range_number_slider" (vedmack#6)
- Added new attribute to yadcf constructor: date_format, it defines the format in which the date values are being parsed into Date object and also in which format the datepicker will display the selected dates, default value: "mm/dd/yyyy"
- Added new filter type: range between two numbers with jQuery UI Slider widget, filter_type: "range_number_slider" (vedmack#6)
- Fixed IE8 issues (vedmack#7)
- Added new filter type: range between two numbers
- Added new attribute to yadcf constructor: filter_type (String), possible values are select / auto_complete / range_number, (default is select)
- In order to set custom labels for the range inputs use the filter_default_label attribute with array of two string as input , example: filter_default_label: ["myFrom", "myTo"]
- enable_auto_complete attribute is now deprecated, although its still can be used I recommend to use filter_type: "auto_complete"
- Added two attributes:
- sort_as : Defines how the values in the filter will be sorted, alphabetically or numerically (default is alphabetically)
- sort_order : Defines the order in which the values in the filter will be sorted, ascending or descending (default is ascending)
- Better align of filter + close button (inside a wrapper div)
- Added support for multiple tables
- Added enable_auto_complete option
- Several code enhancements (added ids to filters etc...)