• Community
  • Products
  • Jira
  • Questions
  • In Jira 5.2.11 we used script to set default value to Message Custom Field (for view) but in Jira 6.4 its not working

In Jira 5.2.11 we used script to set default value to Message Custom Field (for view) but in Jira 6.4 its not working

Shilpa Sanil April 25, 2016
 

2 answers

0 votes
Shilpa Sanil April 25, 2016

We used javascript:

Scrip code is as given below:

 

<div id = "incDiv" class="notify info">
</div>
<script>
var incId = ibstrim(document.getElementById("customfield_10002-val").innerHTML);
if(incId.length>15) incId = incId.substr(0,15);
//alert("-"incId"-");
var htmlVar = "<a href=\'""http://support.ibsplc.com/attachments/"+incId"'>""http://support.ibsplc.com/attachments/"+incId"</a>";
//alert(htmlVar);
document.getElementById("incDiv").innerHTML = htmlVar;
//alert(document.getElementById("incDiv").innerHTML);
function ibstrim(str){
str = str.replace(/^\s+/, '');
for (var i = str.length - 1; i >= 0; i--) {
if (/\S/.test(str.charAt))

{ str = str.substring(0, i + 1); break; }

}
return str;
}
</script>

0 votes
Ravi Sagar _Sparxsys_
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.
April 25, 2016

Did you use a javascript or velocity template to set the default value?

Shilpa Sanil May 1, 2016

we used javascript...its given above

Suggest an answer

Log in or Sign up to answer