Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list

custom function for the rules editor

Avatar

Not applicable

I tried creating a custom function for the rules editor using the doc example, but the side panel didn’t contain the functions:
https://helpx.adobe.com/aem-forms/6-2/rule-editor.html

Do I need to initialize it? There is a  some form of hook that is missing here…

1 Reply

Avatar

Level 2

You can create a client-lib for your adaptive form and create a custom js file. Once you assign the clientLib to Adaptive Form, all the functions that you define within it should appear in the Rule editor. Please see my screenshots. 

Avatar

Not applicable

A client library has been created respectively but the issue I am having is that the custom function is not appearing on the touch UI rules editor sidebar. 

I used the following jsdoc sample:

"=============================="

var area;
//Some codes later
/** */
area = function(len) {
    return len*len;
};

"=============================="

but it is not working.

Avatar

Level 2

Hi,

1. Could you move the package to apps/ folder for once and try.

2. Is the client lib added to guideContainer property in AF authoring.

Please try this once. This should work fine.

Avatar

Level 2

You can create a client-lib for your adaptive form and create a custom js file. Once you assign the clientLib to Adaptive Form, all the functions that you define within it should appear in the Rule editor. Please see my screenshots. 

Avatar

Not applicable

A client library has been created respectively but the issue I am having is that the custom function is not appearing on the touch UI rules editor sidebar. 

I used the following jsdoc sample:

"=============================="

var area;
//Some codes later
/** */
area = function(len) {
    return len*len;
};

"=============================="

but it is not working.

Avatar

Level 2

Hi,

1. Could you move the package to apps/ folder for once and try.

2. Is the client lib added to guideContainer property in AF authoring.

Please try this once. This should work fine.

Avatar

Level 4

Posting for future reference. I faced same issue but when I hard reload my form editor, function appears. Also, if I change something in custom JS, function will disappear from dropdown. I again hard reload and it will show.