gives a an error on the line 4296
"setOptions(tablesSelectors + '_' + column_number_str, dummyArr, tablesArray[i].table);"
the i in this line comes from a for loop that is clossed on line 4293
changing the line to "setOptions(tablesSelectors + '_' + column_number_str, dummyArr);" as it was in version 9.3 fixes the issue.
but if you want to keep the specifix table in the set option seround the line i a new for loop
yadcf.initMultipleTables(tables, [ { filter_container_id: 'multi-table-filter', filter_default_label: 'Filter all tables!', column_data_type: "rendered_html", html_data_type: "text", }]);
gives a an error on the line 4296 "setOptions(tablesSelectors + '_' + column_number_str, dummyArr, tablesArray[i].table);" the i in this line comes from a for loop that is clossed on line 4293
changing the line to "setOptions(tablesSelectors + '_' + column_number_str, dummyArr);" as it was in version 9.3 fixes the issue. but if you want to keep the specifix table in the set option seround the line i a new for loop