Hi,
I've customized a edit-multicheckboxes.vm file to make multi checkboxes in one line.
It's working fine on JIRA4.
I did have same customization to the same vm file on JIRA5 but it's not working.
Would you give me some advice please?
Thanks,
hiro
You might want to show us the .vm you have modified to begin with.
Sorry, Here is the vm file I modified.
------------------------------------------------
##disable_html_escaping() TODO REENABLE
#if ($!displayParameters.get('theme') && $!displayParameters.get('theme') == 'aui')
$!{auiparams.put("controlHeaderType", "checkbox")}
$!{auiparams.put("fieldsetClass", "group")}
$!{auiparams.put("noLabel", "true")}
#AUIformFieldsetHeader ($customField.name $fieldLayoutItem.required $displayParameters $auiparams)
#if ($value) #set ($selectedValues = $value) #end
<table>
#foreach ($option in $configs.options)
#if(($velocityCount%5) == 1)<tr>#end
#if(!$option.disabled || $option.disabled == false || ($selectedValues && $selectedValues.contains($option.optionId.toString())))
#customControlHeader ($action $customField.id $customField.name $fieldLayoutItem.required $displayParameters $auiparams)
#if ($selectedValues && $selectedValues.contains($option.optionId.toString())) #set ($checked = ' checked="checked" ') #else #set ($checked = "") #end
<td><input${checked} class="checkbox" id="${customField.id}-${velocityCount}" name="${customField.id}" type="checkbox" value="$option.optionId" />
<label for="${customField.id}-${velocityCount}">$cfValueEncoder.encodeForHtml($option.value)</label></td>
#customControlFooter ($action '${customField.id}_${velocityCount}' '' $displayParameters $auiparams)
#end
#if(($velocityCount%5) == 0)</tr>#end
#end
#if(($velocityCount%5) != 0)</tr>#end
</table>
#AUIformFieldsetFooter ($action $customField.id $fieldLayoutItem.fieldDescription $displayParameters $auiparams)
#else
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
#customControlHeader ($action $customField.id $customField.name $fieldLayoutItem.required $displayParameters $auiparams)
#if ($value) #set ($selectedValues = $value) #end
<table>
#foreach ($option in $configs.options)
#if(($velocityCount%5) == 1)<tr>#end
#if ($selectedValues && $selectedValues.contains($option.optionId.toString()))
#set ($checked = ' checked="checked" ')
#else
#set ($checked = "")
#end
#if(!$option.disabled || $option.disabled == false || $checked != "")
<td><input$!{checked} class="checkbox" id="${customField.id}-${velocityCount}" name="${customField.id}" type="checkbox" value="$option.optionId" />
<label for="${customField.id}-${velocityCount}">$cfValueEncoder.encodeForHtml($option.value)</label></td>
#end
#if(($velocityCount%5) == 0)</tr>#end
#end
#if(($velocityCount%5) != 0)</tr>#end
</table>
#customControlFooter ($action $customField.id $fieldLayoutItem.fieldDescription $displayParameters $auiparams)
#end
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One additional info. I replaced from original one located below with this.
/usr/local/jira/atlassian-jira/atlassian-jira/WEB-INF/classes/templates/plugins/fields/edit
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.