Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

hide a button tools

Lamia ADJIR July 3, 2017

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 

1 answer

0 votes
Fabio Racobaldo _Catworkx_
Community Champion
December 18, 2022

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

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events