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?
Solved! Go to Solution.
Views
Replies
Total Likes
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")
Views
Replies
Total Likes
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
});
Views
Replies
Total Likes
HI,
My previous comment is with respect to Touch UI dialog.
Views
Replies
Total Likes
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")
Views
Replies
Total Likes
Views
Likes
Replies