Hi All ,
Is there a way I can disable the inline edit in JIRA 6.x ?
It is not possible to disable it from the configurations now .
Does anyone have a workaround for disabling inline edit throughout the JIRA instance .
People who are intrested in this feature can vote up this issue
Regards ,
Mizan
Script to disable quick edit for a particular field .Works when pasted under announcement banner /field description
<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>
try with this
AJS.$('#fixfor-val').removeClass("editable-field");
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.
Hello Mizan and others! Mizan, you told us the way to disable in-line editing for particular field. However - I have no idea how to do it. You wrote
edit for a particular field
What does it mean? Should I enter to Field Configuration? Or where exactly in administration can I edit it?
After answering this question I might be able to understand a location of announcemnet banner/field description.
Thanks in advance for reply to everybody!
Leos
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hey Leos ,
you need to put the script in the field description of the field configuration.. if you put it under the announcement banner the script will disable inline edit for the field for all field configurations..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
FYI, if you're still interested in a fairly complete (but still 'brute-force') custom JavaScript solution to disable inline-edit for selected projects and fields in JIRA 6.2 check this link:
https://answers.atlassian.com/questions/71936/disable-click-to-edit-in-jira?page=2#287179
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This might help:
https://confluence.atlassian.com/display/JIRAKB/How+to+Disable+Inline+Editing+in+JIRA+6.x
its a workaround rather than really disabling, but it helps to address this issue. Cheers :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes but for this i will need to modify all the workflows .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this feature is removed from jira 6.x, check this
check this post it may help you
https://answers.atlassian.com/questions/49613/jira-5-1-inline-editing-how-this-will-work-for-you?page=1#91377
another way is, remove the fields from edit screen and add those fields to global tansition
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes this feature is removed .
is there a way I can disable the system plugin which is responsible for inline editing . The javascript solutions is for a single field and I need to disable this for all field throughout Jira
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
the plugin name is "Atlassian JIRA - Plugins - Quick Edit Plugin" but we don't have option to disable :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you think of a js solution which can work for all fields or atleast for a specific field . We can add this js in the field description
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if you want to diable inline edit for specific field then use something like this
<script type="text/javascript"> jQuery(document).ready(function($) { AJS.$('#customfield_14310-val').removeClass("editable-field"); //here need write code to hide/remove edit(pencil) icon }); </script>
same way if you want to diable inline edit for all fields then use the @Wim Deblauwe solution which is given in the link
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Tried this but its not working . I have used correct customfield id .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
where you added this script? on description of field?
i suggest to load it as webresource or add it on footer.jsp(for testing)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Pasted the script in announcement banner . The quick edit functionality remains but the pencil disappears
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you catch the news at Team ‘25? With Loom, Confluence, Atlassian Intelligence, & even Jira 👀, you won’t have to worry about taking meeting notes again… unless you want to. Join us to explore the beta & discover a new way to boost meeting productivity.
Register today!Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.