Is it feasible to add the Table as a pop up for JIRA Custom Fields?

Anandaraja January 31, 2013

If so let me know how to set that up.

2 answers

0 votes
dleng
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 31, 2013

Sorry I dont tihnk I understand you at all. Do you want to have a table for a custom field? Or have a table pop-up from a customfield when you click on it? Either way its not possible to do so without some customisation.

0 votes
richie_gee
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 31, 2013

Hi there,

Not sure if you are requesting for this, actually you can add a prompt as a pop up for the user to input value, selection etc. To do so you need to go to that particular custom field and inspect element to check what will be the ID of the field, next replace the customfield_10001 below and try this out.

<script type="text/javascript">

customfield = document.getElementById("customfield_10001");

var name=prompt("Please enter your name","Test");
if (name!=null && name!="")
  {
  customfield.value = name;
  } 
 
</script>

Hope this helps :) cheers!

Suggest an answer

Log in or Sign up to answer