Hello,
I have a little issue when i use the
fnFilter function. When i have a column which contains a text with ( ) the function don't work on this.
Example :
with this text,
fnFilter don't work :
Configuration de progiciel (package)
But on this, it works :
Conception et d
Replies
My guess is that the brackets need to be escaped...
Allan
[code] display.push($(this).val().replace( /\(/g, "\\(").replace(/\)/g, "\\)"));[/code]
Thanks
Louis