Damien Sorel

Results 165 comments of Damien Sorel

No way I can think of. The only thing you can do for now is the always make the filter `multiple`. If the user wants an "equal" he will have...

Hello, sorry I won't implement this, it would require changes in the parser and it's basically an equal or contains operation only with a different form. Which can be easily...

if you use an "equal" operator you will get "ProductType = 2" then you only have to transform the output to "ProductType & 2 0" it's all to you to...

QueryBuilder is a tool, not an end product, what I mean is that you will always have to generate your final query from it's output and not expect it to...

Sorry I just don't have the time to analyse this issue. Feel free to submit a proper merge request.

Considering nobody ever asked this I can safely say it is important **for you**. I do not say it is not a valid request be you seems to take it...

Why could't you add a sqlStatement ? ```js $element.queryBuilder({ filters: ..., sqlStatements: { custom: function() { return { add: function(rule, value) { escape or passthru }, run: function() { return...

>Also the usage of an sqlStatements in a standard sql have not semantic sense. I don't understand this sentence. SQL statements should be mandary in any database communication, especially when...

```js QueryBuilder.defaults({ sqlStatements: { custom: ... }, }); ``` exactly like the SQL plugin is adding it's own configuration.