Closed
Description
Hi,
I have this queryBuilder
$qb.queryBuilder({
operators: [{
type: 'create',
nb_inputs: 1,
apply_to: 'select'
}],
filters: [{
id: 'abc',
label: 'abc',
input: 'select',
type: 'integer',
operators: ['create'],
values: [1,2,3,4,5,6]
}]
});
but in exported json the value for filter is always string (quoted number).
Is there any option to change that?
Thanks.