I hope someone can help me with my problem with Thymeleaf.
The case is that I need to do preprocessing with thymeleaf, the first one does it correctly, but inside that first preprocessing I need to get another field from the model, but when I add the field preprocessinf inside another preprocessing it gives me a type error
Could not parse as expression: "$ {rules ["
If I do this, it works fine
rules[__${row.index}__].propertiesValues[]
Failure to insert the other preprocessing
rules[__${row.index}__].propertiesValues[__${rules[__${row.index}__].bookingRuleDescriptor.propertyDescriptors[__${iter.index}__].name}__]
I hope you can help me.
Thank you!!