Hello,
I have on each transition defined transition views and different fields which are required on these specific
transition. Is it possible to mark these fields also with a *?
At the moment the field is a required field but no one knows this because the only possibility to see that the field is required is, to try the state change and see the fields which are required.
Maybe a screenshot shows the problem.
Best REgards
Elke
Thanks a Lot!!! Jobin, i am also looking for this
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hello,
thank you very much for this link. It's very good, I hope it will work.
Can you tell me, where I can enter this javascript? I don't know which file I have to edit or where I should enter the described javascript.
BR Elke
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
add it on field description in field configuration scheme of a specifi project
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ok thanks! It works perfect.
Does this also works for system fields?
BR ELke
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, although the names/ids of the system fields in the html are very different from the custom field names (and a lot more obvious - assignee, reporter, priority etc)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The workaround is perfect for select fields and normal custom fields. But it doesn't work on checkbox fields. Maybe the name of the field is different as customfield_id.
Do you have any idea?
BR Elke
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
try something like this
AJS.$("#customfield_12310-1").parent().children('label').append('<span class="aui-icon icon-required"></span>');
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have tried it but it doesn't work. The * doesn't appear.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For chechkbox
<script type="text/javascript">
AJS.$("#customfield_xxxx-1").parent().parent().children('legend').children('span').append('<span class="aui-icon icon-required"></span>');
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you very much. It works now perfectly! Thank you! BIG Thank you!
Best Regards
Elke
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi everybody,
I have found the solution.
The Comment field is not a normal systemfield and it was only possible to add the * to the label. It works with the following script:
<script type="text/javascript">
{
AJS.$("label[for=comment]").append('<span class="aui-icon icon-required"></span>');
}
</script>
BR Elke
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello again,
Does anyone know how the system field: Comment is used through the javascript.
I have tried: <script type="text/javascript">
{ AJS.$("#comment").parent().children('label').append('<span class="aui-icon icon-required">
but it doesn't working.
BR Elke
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this is very very bad. I hope someone find a workaround. I am still hoping!
BR Elke
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I had the same requirement, couldn't find any work around yet. I don't think there is one.
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.