Since 4 days ago, I have not been able to create any issues. It only allows me to select issue type, project and assignee. When I click create, it asks me to fill the summary. But it doesn't show it.
Am I the only one with the problem?
i think some one hide the summary field, so check on field configuration screen and make it visable
check this doc to know more about on hide and show fields through field configuration
may be another reason would be, summary field not been added to create screen
Hi guys,
Thanks a lot for your help. Indeed I needed to access the configuration of each field and show it. But they weren't hidden. They appear in the default screen, but I'm not using that screen... don't know why.
Tganks again!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should either supply a default value to the summary field if you do not want to fill it during creation of issues.
Or you have to add the same to the create issue screen as there is no option of hiding the summary field in the field configuration until you are hiding the same using javascript in the description field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
to use the default summary value you can use below code in the description of the summary in its project specific field configuration.
<script type="text/javascript">
var summuryField=AJS.$("#summary").parent();
AJS.$("#summary").val("Default Summary Value");
summuryField.hide();
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sounds like one of your admins has removed the summary from the creation screen. You'll need to add it back.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You probably should be contacting your system admin. Probably the field has been removed from the create issue screen...
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.