Does Bitbucket integrate / work with JIRA Core Cloud?
Example use case #1: I want to link a JIRA Core Cloud issue, with a repository.
Example use case #2: I want to link a JIRA Core Cloud issue, with a specific file in a repository.
Example use case #3: I want to link a JIRA Core Cloud issue, with a specific commit in a repository.
When I use the verb "Link", I mean issue links, like those that already exist within JIRA --- but any means, feature, or mechanic that exists that meets those use cases would be awesome.
My understanding is that as of April 2019, Bitbucket will integrate with JIRA Software but not with JIRA Core.
Edit: I'm anticipating that I'm going to have to convert my business type JIRA Core projects to a JIRA Software project. That wouldn't be the end of the world, but it would be a bit of a drag.
try something like this with Javascript
<script type="text/javascript">
jQuery(document).ready(function($) {
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {
limitSize();
});
limitSize();
function limitSize(){
$('#customfield_13820').keyup(function(e){
var decimalValue = $("#customfield_13820").val();
if(decimalValue < 1 || decimalValue > 14){
alert("Value should be 1-14");
return false;
}
});
}
});
</script>
This dosen't work. What JIRA version are you on. Im on 5.2.9.
I can get the alert message to show if I delete everything else:
<script type="text/javascript"> alert("Value should be 1-14"); </script>You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
we are using jira 5.2.5,
where you have added javascript?
i suggest to add as it by changing custom field id on footer.jsp or load it add webresource in any plugin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have just added it to the description of the field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
field description on field configuration right?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The above code is not working.
can anyone suggest the right code??
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.