Debug v22

This commit is contained in:
ldestailleur
2025-04-25 16:43:31 +02:00
parent 5998b62a64
commit efdc4f9a5d
3 changed files with 14 additions and 8 deletions

View File

@@ -1199,6 +1199,8 @@ function getOperatorsForFieldType(type, maybenull = 0) {
function generateFilterString(column, operator, context, fieldType) {
let filter = "";
console.log("generateFilterString column="+column+" operator="+operator+" context="+context+" fieldType="+fieldType);
switch (operator) {
case "Contains":
filter = column + " like \'%" + context + "%\'";