Expand my Community achievements bar.

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

Multifield in Context aware configuration

Avatar

Level 2

Can we create arrays of textarea in Ca configuration?

@Property(label = "Enter the Page Path", description = "Page Path", property = {
"widgetType=textarea",
"textareaRows=10"
})
String[] pagePaths();

 I have used this code but I am getting multifield but textarea is not coming. Instead textfield is coming.
Any idea how to get textarea with multifield?

VanitaNa_0-1726564681722.png

 

 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @VanitaNa 
According to the official doc https://wcm.io/caconfig/editor/usage.html , It should be correct. You can raise a defect at https://github.com/wcm-io/io.wcm.caconfig.editor/issues 

 

 If you want to use multifield for page path then you can also try

@Property(label = "Page", description = "Page Path.", property = {
    "widgetType=pathbrowser",
    "pathbrowserRootPath=/content"
})
String[] paths();

 

Arun Patidar

AEM LinksLinkedIn

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Hi @VanitaNa 
According to the official doc https://wcm.io/caconfig/editor/usage.html , It should be correct. You can raise a defect at https://github.com/wcm-io/io.wcm.caconfig.editor/issues 

 

 If you want to use multifield for page path then you can also try

@Property(label = "Page", description = "Page Path.", property = {
    "widgetType=pathbrowser",
    "pathbrowserRootPath=/content"
})
String[] paths();

 

Arun Patidar

AEM LinksLinkedIn