I'm embedding javascript into a custom field's "description" input field. This field is normally used for storing description labels for custom fields. However, It can also be used to store field-specific javascript (I'm using jQuery).
My problem is that, although my script seems to work on my preliminary tests, I can't locate the script in the DOM in order to verify its presence and do trace testing.
Using Chrome's developer tools inspector menu, I can click on the description and see the text in the inspector panel. However, I can't see the script there. I know its present somewhere in the DOM because my jQuery is formatting the description input as written.
Can anyone shed light on where the script is written to the DOM?
Here's the contents of the description field:
This is the calculated estimate field <script type="text/javascript"> jQuery(document).ready(function(){ jQuery("#customfield_21070").attr('style','width:60px'); jQuery("#customfield_21070").attr('disabled','disabled'); var customfields = [ '#customfield_11070', '#customfield_11071', '#customfield_20071', '#customfield_20072', '#customfield_20073', '#customfield_20074', ]; for(var i=0, len=customfields.length; i<len; i++) { console.log(customfields[i]); jQuery(customfields[i]).keyup(function(){ calculateSum().call(this); }); } function calculateSum(field) { var sum = 0; if(!isNaN(field.value) && field.value.length!=0 && field.id !== "customfield_21070") { sum += parseFloat(field.value); } jQuery("#customfield_21070").val(sum.toFixed(2)); } }); </script>
Hi,
You can see the description, if you open this url http://yourhostname:port/jira/secure/CreateIssue.jspa in a new tab
I'm not sure I'm communicating the problem clearly.
There is no problem seeing the description. See my notes above. The problem is that when I view the live page and try to inspect the DOM, I can't see the script that's in the same field as the description. But I surely CAN see the description fine.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As @zezeto said, open it in a new page and you will see the javascript in the DOM. In the normal case, create screen is a popup and thta is why it is missing from the DOM I guess.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I see. We don't have this field on our issue creation screen. Its only on the Issue edit screen.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same logic :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Check if the script is put in the right scheme configuration fields on issuetype
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi zezeto, I've placed my script into the custom field (customfield_21070) via this path:
Adminstration > Fields > Custom Fields > (Calculated Estimate) > Edit Custom Field Details
The customfield_21070 input element is referenced as "Calculated Estimate" on the Custom Fields screen. That's where I've placed my code and field label.
I can verify that my label is present, and it also changes as expected, when I edit the custom field. However, the problem remains that the script that's placed just below the field label cannot be found in the DOM. I would expect the script to appear directly below the field label in the DOM. However, its not there.
Bottom line: the script works perfectly. However, I can't locate it in the DOM in the expected location.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.