How to get properties of page from JavaScript? | Community
Skip to main content
bhoang
Level 4
April 16, 2018
Solved

How to get properties of page from JavaScript?

  • April 16, 2018
  • 3 replies
  • 5089 views

Hi,

I am create an admin form on AEM for the admin input the data for a page. So, I will use JavaScript to get the content from properties page to show into the field when edit page.

Example:

In this admin form to create a page with some fields, the user will choose the path and the list of PPD property of that path will display on the select list. After that the admin will sync and save the data.

When they choose "View properties" to edit the page, I want the select list will be select the previous value.

I want to use JavaScript to get value from the page properties when it load ready.

Thank you for your help,

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 Feike_Visser1

things like 'granite.resource' are only available in serverside Javascript.

3 replies

Feike_Visser1
Adobe Employee
Feike_Visser1Adobe EmployeeAccepted solution
Adobe Employee
April 16, 2018

things like 'granite.resource' are only available in serverside Javascript.

Rima_Mittal
Level 4
April 16, 2018

Try writing the logic in a backend service which reads and returns child nodes under the path specified and from your JS file, ajax a servlet which brings all the required content through the service.

Hope this helps!

edubey
Level 10
April 17, 2018

If you know the path, make a request directly from browser with .json without servlet/service. I am assuming this is only author specific case.