Editor php libraries not supporting regex search
Editor php libraries not supporting regex search
Alain Albertini
Posts: 3Questions: 1Answers: 0
Hi,
Based on the Editor php code (v.1.6.0), it does not seem to handle column['search']['regex'] = true to perform a "regexp" where rather than "like".
Is this a known limitation? what's the best workaround?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
This is with server-side processing? If so then you are correct. There is a serious performance impact on large data sets (which you would have if you are using server-side processing) with regex. The Editor libraries currently do not support regex searching with server-side processing and there is no workaround other than to implement your own server-side processing script.
Allan
thanks