I want to show a language field that is a selector of language.
the values of the selector shall change depending of Project or UserGroup ( or whatever )
I am using JIRA 5.1.4
I am using script runner to create a scripted field "language"
question is :
has to be done in Groovy, Java, Javascript or in Velocity ? ( what is better ?)
I am trying to use javascript : (HTML option)
<!-- only a test -->
<script type="text/javascript">
pr = document.getElementById('Project');
alert(pr.value);
</script>
Result it not compiles --- ( error in line 1 )
:::::::::::::::
in " templates " section : can I use a macro ? like this ? ( velocity macro )
## script info
#set($UserGroups=$userAccessor.getGroupNamesForUserName($action.remoteUser.name))
## Participating offices ::::::::::::::::::::::::::
#if ($UserGroups.contains("cyprus-agents") )
$!Greek
#elseif ($UserGroups.contains("denmark-agents") )
$!Danish
#elseif ($UserGroups.contains("ohim-knowledge-administrators") )
$!Spanish
$!English
#else ## :::::::::::::: OHIM :::::
$!Spanish
$!English
You can put groovy in the groovy box, or velocity in the template bit. I would try to do it in groovy alone and see how you get on. Go through some of the examples... there are too many wrong things here to call them out one by one.
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.