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 Leaders.
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

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 Leaders.
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 September 27, 2017

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

Like Claude Favre-Felix likes this
0 votes
Luca Miceli 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 September 27, 2017

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

Suggest an answer

Log in or Sign up to answer