You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi,
I am using java script in description field of a custom field (of text type) to render it as a hyperlink (anchor tag).
But on editing/inline editing the jira-issue, the field value gets rendered as a normal text and not as a hyperlink.
On page refresh the field gets displayed again as hyperlink.
I tried "alerting" the value, it appears that after the edit operation (which is an ajax call) value of the custom field div changes to some "form".
Posting this here hoping some one who has come across similar problem could help me.
Thanks,
Aravind
you need to use following event for inline edit
JIRA.CONTENT_ADDED_REASON.inlineEditStarted
check this doc
https://developer.atlassian.com/display/JIRADEV/Inline+Edit+for+JIRA+Plugins
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i found this exact same issue with my javascript intensive plugin. The field is getting re-rendered without the javascript getting run. Add your rendering logic within the following JIRA.bind
JIRA.bind( JIRA.Events.NEW_CONTENT_ADDED, function(e,context)
{
// rerun javascript here
});
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.