maxfrz21
Results
2
comments of
maxfrz21
I've solved by rewriting SortOptions function, here is my code: `$.fn.sortOptions = function() { return this.each(function() { var opts_list = $(this).find('option'); opts_list.sort(function(a, b) { return $(a).text() > $(b).text() ? 1...
I've found a solution for my issue... 1) I've found a bug in "bs-table.js". At line 63 "filter" is not defined, so i've add declaration "var filter;" 2) I've configured...