Skip to content

Commit

Permalink
0.9.4.beta.36
Browse files Browse the repository at this point in the history
bug fix #149
  • Loading branch information
vedmack committed Dec 29, 2019
1 parent ae98232 commit 57b172f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions ChangeLog.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
https://github.com/vedmack/yadcf/issues/587 - Applying style_class to range_date uses the wrong element
https://github.com/vedmack/yadcf/issues/602 - Filter not working on dynamic input in Firefox but in Chrome
https://github.com/vedmack/yadcf/issues/603 - Date range with jquery-ui datepicker disables "future" dates even after they have been cleared
https://github.com/vedmack/yadcf/issues/149 - forgot to define html5_data attribute column x error



Expand Down
6 changes: 3 additions & 3 deletions src/jquery.dataTables.yadcf.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Yet Another DataTables Column Filter - (yadcf)
*
* File: jquery.dataTables.yadcf.js
* Version: 0.9.4.beta.35
* Version: 0.9.4.beta.36
*
* Author: Daniel Reznick
* Info: https://github.com/vedmack/yadcf
Expand Down Expand Up @@ -474,7 +474,7 @@
updatedData: array of new data (use same data structure as was used in yadcf.init options)
Usage example: yadcf.exRefreshColumnFilterWithDataProp(table_arg, 5, ['One', 'Two', 'Three']);
* initOnDtXhrComplete
Description: Allows to set a callback function to be called after dt xhr finishs
Description: Allows to set a callback function to be called after dt xhr finishes
Arguments: function to do some logic
Usage example: yadcf.initOnDtXhrComplete(function() { $("#yadcf-filter--example-0").multiselect('refresh'); });
Expand Down Expand Up @@ -2977,7 +2977,7 @@ if (!Object.entries) {
} else {
if (columnObj.column_number_data === undefined) {
col_inner_data = data[j]._aData[column_number_filter];
if (typeof col_inner_data === 'object') {
if (col_inner_data !== null && typeof col_inner_data === 'object') {
if (columnObj.html5_data !== undefined) {
col_inner_data = col_inner_data['@' + columnObj.html5_data];
} else if (col_inner_data && col_inner_data.display) {
Expand Down

0 comments on commit 57b172f

Please sign in to comment.