Dynamic title for Reports
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2018 12:35 AM
Hi all,
How can we add dynamic title for reports .
I want the current month name and year in the report title.
next month it should automatically change.
any solution
?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2018 02:35 AM
Hi
That link shows everything. It's about adding title only. I hope you have gone through it well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2018 02:43 AM
hi
I created the ui page and ui widget.
after that what to do..
how can I add dynamic title.
I didn't understand more form the link.
could you help me'

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2018 02:46 AM
Hi
in UI Page have you written Client Script?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2018 02:51 AM
yes !!!
var myIframe = document.getElementById('frame1');
myIframe.addEventListener("load", function() {
this.contentWindow.document.getElementById("reportform_control").style.display='none'; // hide report controls from users
});
function setframe (url, title) {
var x1 = document.getElementById('mytitle');
x1.innerHTML = "Change Calendar Report for "+title;
var x2 = document.getElementById('frame1');
x2.setAttribute('src', url);
}
this is the script

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2018 02:57 AM