Ideally on Sub-Task Create I would like to display the parent Summary field as the default Summary and allow the user to edit that. I found deferred feature requests so this appears not to be possible.
As an alternative, not displaying the Summary field and having the parent Summary copied into the Sub-Task summary on create would be acceptable. Users could then edit the Sub-Task if they wanted to change the Summary.
I tried implementing the above by not showing the Summary field on the create screen and adding a post function to copy the parent's Summary field into the Sub-Task Summary field. But creates then fail because the Summary field not empty validation precedes the post function.
Is there a way to copy the field value earlier OR to, without user interaction, add a dummy value to the Summary field to pass the validation check (and be overwritten by the post function)?
I bet you could do this in Javascript. You’d have something trigger so when the “Create Sub-task” form content gets loaded, it would copy the summary from the “main” page into the summary input field on the “pop-up” page. I’ve done similar things before.
Something like:
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function(e, context0, reason) { var context = AJS.$(context0); if (context.parents("div#create-subtask-dialog").length < 1) return; context.find("input#summary").val(AJS.$("#summary-val").text().trim()); });
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.