Skip to content

Commit

Permalink
refs #10 Autocomplete is now working with external container
Browse files Browse the repository at this point in the history
  • Loading branch information
tobbi007 committed Oct 31, 2013
1 parent a02cce9 commit 716fdd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jquery.dataTables.yadcf.js
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ var yadcf = (function ($) {

} else if (args[i].filter_type === "auto_complete") {
$(filter_selector_string).append("<input id=\"yadcf-filter-" + table_selector_jq_friendly + "-" + column_number + "\" class=\"yadcf-filter\" onclick='yadcf.stopPropagation(event);"
+ "' placeholder='" + filter_default_label + "'>" + "</input>").appendTo("#" + filter_container_id + " div.yadcf-filter-wrapper");
+ "' placeholder='" + filter_default_label + "'>" + "</input>");
$(document).data("yadcf-filter-" + table_selector_jq_friendly + "-" + column_number, options);

$(filter_selector_string).find(".yadcf-filter").after("<input value=\"" + filter_reset_button_text + "\" type=\"button\" " +
Expand Down

0 comments on commit 716fdd0

Please sign in to comment.