Forums

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

JIRA project doesn't exist or you don't have permission to view it when reordering issues

Ellen Beentjes
Contributor
November 21, 2018

I insert a JIRA filter list view and can see all the issues. 

However if I click on one of the column headers to re-order the data I get the above error message.

JIRA project doesn't exist or you don't have permission to view it.

Does anyone know why this is happening and how I can solve this?

1 answer

0 votes
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
December 17, 2013

try by adding javascript inside of this bind event

JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {
//add your code here
});

check this

https://answers.atlassian.com/questions/47843/strange-javascript-problem-in-create-screen

Sanu Soman
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
December 17, 2013

Tried,

JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {
<script type="text/javascript">
function showHelp() {
var helpDiv = AJS.$("Application Name");
if (helpDiv.length == 1) {
helpDiv = helpDiv[0];
if (helpDiv.style.display == 'none') {
helpDiv.style.display = '';
} else {
helpDiv.style.display='none';
}
}
}
</script>
<a href="#" title="Application Name" onclick="showHelp(); return false;"><img src="/images/icons/ico_help.png"/></a>
<div id="Application Name" style="display:none">
Application Name - help text
</div>
});

But getting,

RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
December 17, 2013

try like this

&lt;script type="text/javascript"&gt;
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {
function showHelp() {
	var helpDiv = AJS.$("Application Name");
	if (helpDiv.length == 1) {
		helpDiv = helpDiv[0];
		if (helpDiv.style.display == 'none') {
			helpDiv.style.display = '';
		} else {
			helpDiv.style.display='none';
		}
	}
}
});
&lt;/script&gt;
&lt;a href="#" title="Application Name" onclick="showHelp(); return false;"&gt;&lt;img src="/images/icons/ico_help.png"/&gt;&lt;/a&gt;
&lt;div id="Application Name" style="display:none"&gt;
Application Name - help text
&lt;/div&gt;

Sanu Soman
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
December 17, 2013

Now nothing showing in description, the problem is something else?

Suggest an answer

Log in or Sign up to answer