fnFilter with & and <
fnFilter with & and <
bengalaviz
Posts: 6Questions: 0Answers: 0
I have a column with an & and a < in the text. I am trying to disable regex for this field but nothing seems to work. Here is my code
[code]
$('#subTypeDD').change(function(){
var selVal = $('#subTypeDD :selected').val();
$('#subType-input').val(selVal);
oTable.fnFilter(selVal, 7, false, false);
});
[/code]
value for column is "Other Assets & Market Values from Hedges (>1yr)". When select this in the select list I created, it shows no rows when there are some. When I type a space after the "&", all the rows disappear. Am I doing something wrong?
[code]
$('#subTypeDD').change(function(){
var selVal = $('#subTypeDD :selected').val();
$('#subType-input').val(selVal);
oTable.fnFilter(selVal, 7, false, false);
});
[/code]
value for column is "Other Assets & Market Values from Hedges (>1yr)". When select this in the select list I created, it shows no rows when there are some. When I type a space after the "&", all the rows disappear. Am I doing something wrong?
This discussion has been closed.