Does SearchBuilder support server-side processing?
Does SearchBuilder support server-side processing?
![mcoder](https://secure.gravatar.com/avatar/a3f2d55d881899d701692489c357089a/?default=https%3A%2F%2Fvanillicon.com%2Fa3f2d55d881899d701692489c357089a_200.png&rating=g&size=120)
Link to test case: live.datatables.net/dufanoko/1/edit
Description of problem:
I want to pass the values from the SearchBuilder to the database query. I have found old posts that said that it was not implemented, but those posts were from about 2 years ago. Is this still the case?
This question has accepted answers - jump to:
This discussion has been closed.
Answers
Yep, that's supported now - see example here. You'll need to use the Editor server-side files, but you can do that without an Editor license. This blog post goes into some detail on how to do that,
Colin
Thank you for this. I had also seen posts that Editor only supports LEFT joins. Is this still the case? As I need to use INNER joins in my queries.
That is correct. If your query can be reproduced with a left join and a
where
condition, then that would work okay. But an explicit inner join would require the use of a VIEW at the moment.Allan