Questions tagged [jquery-query-builder]

QueryBuilder is an UI component to create queries and filters. jQuery-Plugin.

37 questions
4
votes
2 answers

Converting angular2-query-builder query to logical expression

I use angular2-query-builder in my project. Besides, the back-end project using Java, Spring boot and Rulebook as a rule engine in order to fire rules which are generated by angular2-query-builder. So I need to make a logical expression from the…
Ramin PK
  • 338
  • 1
  • 5
  • 16
4
votes
1 answer

Jquery Query Builder group by columns

I am using Jquery Query Builder. It has AddRule and AddGroup Functions i want to add one more feature called as end of query named as "Groupby". Then i should be able to choose mutie feild where same feild name should be able to access with Json. Ex…
user3815413
  • 385
  • 2
  • 20
3
votes
1 answer

QueryBuilder with select input without filter operators

Is there any way to create a querybuilder without operators?. Example let filters= []; let filter; filter= { id: 'id', label: 'id', type: 'string' }; filter.input = 'select'; …
NickAth
  • 1,089
  • 1
  • 14
  • 35
2
votes
1 answer

Deserializing JSON nested arrays

I have a JSON string that I am trying to deserialize to a .Net object. The code works, until it hits a nested array. Then it just returns empty values. In the below example, when I debug and view the processed object, it will just have: Rules: …
jason
  • 3,821
  • 10
  • 63
  • 120
2
votes
0 answers

How to prevent SQL injection while using Jquery Query Builder

I am using Jquery Query Builder to create custom SQL Queries. And I am using Ajax to send the data to server and get the results. But the problem is that this AJAX request is visible via Inspector Agents. And someone can easily change the query. So…
Rüzgar
  • 947
  • 9
  • 20
2
votes
1 answer

Date-picker with queryBuilder

I am trying to customize the queryBuilder and trying to customize it with date-picker.I want to show datepicker in input field For reference:- http://querybuilder.js.org/. I am trying to use below code. For your reference you can try this at codePen…
sahil
  • 109
  • 1
  • 3
  • 10
2
votes
1 answer

How to add select2 with ajax to jquery query builder?

I would like to add select2 to jquery query builder with loading remote data. This is my code https://jsfiddle.net/cxz2m3y7/22/: $('#builder-widgets').queryBuilder({ plugins: ['bt-tooltip-errors'], filters: [{ id: 'category', …
1
vote
0 answers

How to attach event listeners using jQuery QueryBuilder data

I have generated json data from the jQuery Querybuilder which I would like to use to attach event listeners automatically but after trying for several hours, I haven't been able to figure out a way. Here's the querybuilder json of a html form's…
1
vote
0 answers

How can use another datepicker plugin in jquery querybuilder?

query builder uses bootstrap date picker and I want use Shamsi date picker (jalali-moment.js) in query builder JQuery plugin but i don't know how to do it , i want replace jalali-moment.js with bootstrap date picker , can anyone help me?? it is my…
N.SH
  • 616
  • 7
  • 20
1
vote
1 answer

jquery-queryBuilder init rules with last search submitted

I have a form with integrated the plugin querybuilder.js.org My js is: FROM: scripts.js $(document).ready(function(e) { // INIT PLUGIN $('#queryBuilder').queryBuilder({ plugins: ['bt-tooltip-errors'], filters: [{ id: 'description', …
Giuseppe Lodi Rizzini
  • 1,045
  • 11
  • 33
1
vote
1 answer

jQuery-QueryBuilder which group button is clicked?

I've been using jQuery-QueryBuilder to implement an Advanced Search feature in my Rails app. It's cool. Right now, I want to customize the templates by adding a new Add group called Add Custom Group as my screenshot. The behavior of Add Custom…
Pirun Seng
  • 443
  • 1
  • 4
  • 20
1
vote
0 answers

Jquery Query builder Grid search using datatable in PHP

Using PHP I want to add custom search like http://querybuilder.js.org/demo.html into existing grid/listing.Current grid display using datatable using ajax. Listing have five fields : Name,Email,Phone,Gender,Zipcode Now customize search on above five…
Ohm
  • 171
  • 1
  • 1
  • 10
1
vote
1 answer

Evaluating expressions individually using jQuery Query Builder

I have a system to evaluate student grades. I should be able to define evaluation criteria dynamically in a JSON object. For example a student will pass Java Programming module if: (courseWorkMarks > 30 && inClassTest > 40) || examMarks > 40 //…
Deepan Cool
  • 476
  • 1
  • 6
  • 16
0
votes
0 answers

Getting values in Jquery Query builder using selectize

I'm trying to solve a problem for some days but I can't do it. This code is using Jquery Query Builder and the plugin selectize, to allow me selecting multiple values. Everything is okay, except that I could't get the values selected in the input.…
DiChrist
  • 351
  • 7
  • 18
0
votes
0 answers

Custom Input Type in each rule jQuery Query Builder

Can I have multiple inputs for any given type? I am trying to customize the query builder by adding two date range pickers (from date and to date) to each rule. filters: [ { id: 'category', label: 'Category', type: 'integer', input:…
nawaz uddin
  • 345
  • 2
  • 14
1
2 3