Page tree

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

This is the documentation for ConfiForms Server/Data Center app

However, this might also work for ConfiForms cloud and in most cases it does. But please see this page to understand the differences between server and cloud versions of the ConfiForms app.


In ConfiForms you can set up the valiations rules to be applied within a context of the whole dataset.

This is done using ConfiForms Field Definition Rules macro and choosing action "Validation rule (dataset)" from the list of actions

The important bits are how to set up the filter when it runs and what to add into the validation rule

The goal

We want to check if a person (by email) has already registered. It is important moment, that we actually want to check by email, and not by built-it operator [UNIQUE], which can easily help us with this if we wanted to check by username (built-in Confluence user object). See more on filters here: ConfiForms Filters

But we want to check by user's email which they type in the registration form. Something like this:

So, we have a form with a field called "youremail"

 

We will add ConfiForms Field Definition Rules macro

And put the condition to match like this. It will be sufficient if you want to check only for new registrations and not allow changing the already registered records. As with this conditions we check for "email uniqueness" across the whole dataset and it would be non-unique.

In order to support edits the condition should be changed to:

youremail:[entry.youremail] AND !id:[entry.id]

 

 

 

 

 

 

 

 

  • No labels