Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

hooking up custom validation

Avatar

Former Community Member

Hi all.

AEM (6.2) Forms provides validation facilities for entry fields (email, telephone) for example. We'd like to add new functions that we can share, for more than just simple patterns. In the rules editor (visual editor) there is function list you can use. We'd like to add to that.

We tried creating this:

/**
 *Validate pattern
  *@param {string} pattern - the pattern to use
 */
 function ValidatePattern(pattern) {

    console.log('hello');
     return (this.value && this.value.match(pattern) == null) ? false : true;
 }
 

..Just to see if "ValidatePattern" would show up in the VisualEditor/FunctionsList. It *does*, but it's not called.

Suggestions?

-Joel

1 Accepted Solution

Avatar

Correct answer by
Former Community Member

We solved this ourselves.

Basically you need to:

1. Create js specifically for validation. Similar to:

    var saveAndAddClickHandler = function(param) {
        //do something

 }

 

2. Now "saveAndClickHandler" is available as a drag and drop function for your button function list.

Joel

View solution in original post

2 Replies

Avatar

Former Community Member

Further to this...AEM uses the JCR property "validateExp" to do validation.

guideRuntime.js:25733:

            if (validFlag && this.validateExp ) {
  >>              validFlag = this.executeExpression("validateExp");

guideRuntime.js:25149:

        _expressionHandler: function (expressionName) {
            var expFn, returnValue;
            if (this._compiledExpressions[expressionName]) {
                expFn = this._compiledExpressions[expressionName];
                try {
>>                     returnValue = expFn.apply(this);

We have the option to override guideRuntime.js (I think) to check our own JCR property for a function we implement, but we'd rather not override core stuff.

Is there a more standard way to do this to build our own library of functions to validate?

Avatar

Correct answer by
Former Community Member

We solved this ourselves.

Basically you need to:

1. Create js specifically for validation. Similar to:

    var saveAndAddClickHandler = function(param) {
        //do something

 }

 

2. Now "saveAndClickHandler" is available as a drag and drop function for your button function list.

Joel