Override Adaptive Form DropDownList component | Community
Skip to main content
October 31, 2018
Solved

Override Adaptive Form DropDownList component

  • October 31, 2018
  • 6 replies
  • 6336 views

Hey yall,

I'm trying to override the GuideDropdown component to be able to populate the option values dynamically in the backing bean. The values get populated and the drop down renders fine but the form will not submit anymore and the following error is in the console. Any ideas how to resolve this?

guideRuntime.js:26192 TypeError: Cannot read property 'priority' of undefined

    at child.getAttribute (guideRuntime.js:26698)

    at child._addProperty (guideRuntime.js:30187)

    at child.<anonymous> (guideRuntime.js:30156)

I pretty much just copied and pasted the /libs/fd/af/components/guidedropdownlist component and changed any references to GuideDropDownList.java to my own custom java class, which also extends GuideField.java. In the end I'd want the form to be able to submit and store the value within crx or a connected DB.

Ideally I'd like to do this in HTL and sling models instead of jsp but it seems the OOB adaptive form submit functionality will only store data from adaptive form components?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Mayank_Gandhi

Instead, you can use SOAP-based Form data model and create its service. Use this service in adaptive form to load the dynamic drop-down list. I have shared details on similar use-case in old forum post:

AEM 6.3 Forms - How can I populate a dropdownlist from database?

6 replies

Mayank_Gandhi
Adobe Employee
Adobe Employee
October 31, 2018

Hi,

What version of AEM forms are you using?

jamestvuAuthor
October 31, 2018

6.3

Mayank_Gandhi
Adobe Employee
Adobe Employee
October 31, 2018

And how is the dropdown list being fetched, is it a WS call or from DB?

jamestvuAuthor
October 31, 2018

From a soap WS call but currently I'm just passing a list of objects hard coded atm to the dropdown.

Mayank_Gandhi
Adobe Employee
Mayank_GandhiAdobe EmployeeAccepted solution
Adobe Employee
October 31, 2018

Instead, you can use SOAP-based Form data model and create its service. Use this service in adaptive form to load the dynamic drop-down list. I have shared details on similar use-case in old forum post:

AEM 6.3 Forms - How can I populate a dropdownlist from database?

jamestvuAuthor
October 31, 2018

thanks ill giv this a shot