The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

disable inline edit for one field in Jira

clem
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.
January 12, 2016

Hi,

I would like to disable the inline edit for a specific field.

Can I do this through behaviours?

I tried the following:

FormField formComponent = getFieldById(getFieldChanged())
formComponent=formComponent.setAllowInlineEdit(false)
formComponent.setAllowInlineEditChanged(true)

But none of these work.

Thanks,

Cynthia

3 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Answer accepted
clem
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.
January 13, 2016

Hi Luca,

Thanks for the answer.  It didn't work for me but helped me get on a track that did work.

 

I used this in the announcement banner:

<script type="text/javascript">
AJS.$(document).ready(function() {
setInterval(function() {
AJS.$('#fixfor-val').removeAttr('class');
AJS.$('#fixfor-val').children('.icon').remove();
AJS.$('#fixfor-val').removeAttr( "title" )
}, 200);
});
</script>

 

Thanks,

Cynthia

achref_bziouech
Contributor
September 27, 2017

hello can you please tell me where you put this code ?

Like Claude Favre-Felix likes this
0 votes
anhnnp
Contributor
November 27, 2019
0 votes
Luca Miceli
Contributor
January 12, 2016

You can do that using javascript to remove the following css class.

For instance:

AJS.$("#customfield_10010-val").removeClass( "editable-field" );

 

Regards

Luca

achref_bziouech
Contributor
September 27, 2017

hello can you please tell me where you put this code ?