You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
I have a problem with which I want to hide the buttons tools on the dashboard page using javascript,
When i execute this sript
var t = window.document.getElementById("dashboard-tools-dropdown");
t.style.display="none";
on the browser console its walking but when i put it in live filed or the ad banner it displays this error
Dashboard.jspa:306 Uncaught TypeError: Cannot read property 'style' of null at
Hi @Lamia ADJIR ,
probably your javascript is executed before that element is loaded.
Please try to add the jira event on your javascript in order to be sure that it is executed after that page is fully loaded :
require([ 'jira/util/events',
'jira/util/events/types',
'jira/util/events/reasons',
], function(Events, EventTypes, EventReasons) {
"use strict";
Events.bind(JIRA.Events.NEW_CONTENT_ADDED , function(e, jiraContext, reason) {
switch (reason) {
case EventReasons.pageLoad:
YOUR_JS_CODE_HERE
break;
}
});
});
Hope this helps,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.