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?
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
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,

You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
try like this
<script type="text/javascript">
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';
}
}
}
});
</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>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Now nothing showing in description, the problem is something else?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.