I need to show logical operators [and, or, not] in FilterBuilder in French language. I cannot find anyway to localize these.
Please have a look in attachment for more insight.
Please have a look in attachment for more insight.
isc.DataSource.create({
ID: "operatorDS",
clientOnly: true,
fields: getAllFields(operatorArr)
});
operatorDS.setTypeOperators('text',["and","or"]);
Operators.addClassProperties({andTitle: "{{#txt_and#}}"});
Operators.addClassProperties({orTitle: "{{#txt_or#}}"});
isc.FilterBuilder.create({
ID: "advancedFilter",
dataSource: "operatorDS",
maxSubClauseDepth: 1,
criteria: getCriteriaJson(),
subClauseButtonPrompt: "{{#txt_add_subclause#}}",
addButtonPrompt : "{{#txt_add#}}"
});
Comment