コミュニティアチーブメントバーを展開する。

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

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

How to get adaptive form submit button name in post.POST.jsp

Avatar

Level 4

Hi,

Is there a way to get submit button's Element Name value in custom submit actions' post.POST.jsp on an AEM adaptive form?

The usecase is one adaptive form contains two submit buttons with different Element names and in post.POST.jsp the business logic varies for each submit button.

I tried resource object in post.POST.jsp but that gives adaptive form object.

Thanks & Regards,

Srikanth Pogula.

1 受け入れられたソリューション

Avatar

正解者
Level 7

How about adding rules to the buttons to set a hidden form field to say "submit1" and "submit2" and checking these in your code after submit?

元の投稿で解決策を見る

5 返信

Avatar

正解者
Level 7

How about adding rules to the buttons to set a hidden form field to say "submit1" and "submit2" and checking these in your code after submit?

Avatar

Level 4

Hi James,

Thanks for the quick reply.

I tried the above approach but unable to see hidden fields listed while during Set Value of function.

Also am working AEM 6.2 SP1 CFP3 where am unable to find hidden form field component in side panel, any idea if there is any component which is readily available? or should the input hidden field be added at adaptive form template script?

Thanks & Regards,

Srikanth Pogula.

Avatar

Level 7

You could try leaving the field normally visible, then hiding it on initialise. That way it should always show in the component side panel in the Rule Editor.

Avatar

Level 4

Thanks DarrenBiz and James,

The above approach worked, thanks much for your help.

Avatar

Level 2

Hi Srikanth,

I am working on the same scenario.can you please share the code piece in post.POST.jsp and how to configure the hidden field for submit button.