Bug with searching multiline columns + fix
Bug with searching multiline columns + fix
mot
Posts: 5Questions: 0Answers: 0
DataTables can not search in multiline (containing '\n') columns. Fix is provided.
Replace
[code]var rpSearch = new RegExp( sRegExpString, "i" );[/code]
with
[code]var rpSearch = new RegExp( sRegExpString, "im" );[/code]
Replace
[code]var rpSearch = new RegExp( sRegExpString, "i" );[/code]
with
[code]var rpSearch = new RegExp( sRegExpString, "im" );[/code]
This discussion has been closed.
Replies
Anyway, thanks for you contribution... Some1 may be need this (or even me later ^^)
Allan