Expand my Community achievements bar.

SOLVED

Get the Page Title in Component Dialog

Avatar

Level 4

I have a requirement where I want to populate the page title in the component dialog as a value.  I know this can be done by writing dialog listener, Is there any other way to do this?

 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

You need to write a clientlib js, below code will work and return json response of page properties and you will get the jcr:title from responseText.

 

$.get(Granite.author.page.path+".1.json")



Arun Patidar

View solution in original post

3 Replies

Avatar

Level 10

HI, 

 

We can make use of dialog-ready event to manipulate dialog fields when we open a dialog.

However the use case of populating it with page title will not be possible as the same is not accessible in front end.  

Perhaps we can make use of window.location.pathname to get pagename alone by string manipulations. (If page name is framed automatically or if it is consistent across projects, you can arrive at way of making extracted page name as Page title,  again via String manipulations)

 

$(document).on("dialog-ready", function() {

       var pageTitle = ..

      $("input[name='./text']").val(pageTitle);  // name attribute of desired dialog field

});

Avatar

Level 10

HI, 

My previous comment is with respect to Touch UI dialog.

Avatar

Correct answer by
Community Advisor

You need to write a clientlib js, below code will work and return json response of page properties and you will get the jcr:title from responseText.

 

$.get(Granite.author.page.path+".1.json")



Arun Patidar