What steps will reproduce the problem?
1. Pass a
{
type: "select",
values: someValues
},
someValues having value : label pairs, where labels are strings and values id's.
What is the expected output? What do you see instead?
I would expect it to filter by string values instead of id values.
What version of the product are you using? On what operating system?
Latest, Ubuntu.
Please provide any additional information below.
It can be fixed by changing lines 377, 379:
oTable.fnFilter($(this).val(), iColumn, bRegex);
oTable.fnFilter(unescape($(this).val()), iColumn);
by using $(this).find('option:selected').text().
Or atleast by adding another option to filter by select id's or values.
Original issue reported on code.google.com by dnizetic...@gmail.com on 6 Sep 2013 at 12:07
Original issue reported on code.google.com by
dnizetic...@gmail.com
on 6 Sep 2013 at 12:07