I have a wierd behavior in my form (CONFIFORMS)
I am working with a field that represents the date of the request (filled automatically to today), requestdate.
I have another field which is an interval date to reservation purposes.
I want to validate that the interval starts after the requestdate.
In my Confiforms Rules for field Definition I set a validation rule like this:
- FIeld name: theinterval
- Condition: requestdate:>interval.startDate
When we create the entry the validation rule does not work, whereas when I edit the entry it correctly detects the incorrect date.
What am I missing?
You should reference the value, not the "text" for "interval.startDate", as you check the field agains the value in the conditions...
Meaning that the correct one would be
requestdate:>[entry.interval.startDate]
Hello,
Can you have a look on the below validation rule? Why is it not working as expected?
I'm trying to create validation rule based on the another date field.
My criteria (as EmployeeContractEnd mustbe later then start date). I added dot in the validation rule.
EmployeeContractEnd:>[entry.EmployeeContractStart]
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Take a look at the answer in the https://community.atlassian.com/t5/Marketplace-Apps-Integrations/Confiforms-validation-rule-Date-field/qaq-p/2903418
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.