Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Velocity file

SRIDHAR November 14, 2012

I have a select list and the default value is "Please Select a value from the list" . When the user has choosen default value. I want to display as Not Applicable instead of Please Select a value from the list.

How do we write condition display in edit.vm velocity file. I tried few options but it is not working. How do we write condition display in Jira velocity file?

4 answers

Suggest an answer

Log in or Sign up to answer
0 votes
SRIDHAR November 20, 2012
Trial 3
----------

#customControlHeader ($action $customField.id $customField.name $fieldLayoutItem.required $displayParameters $auiparams)
<select class="select" name="$customField.id" id="$customField.id" style="width:auto">   
     #foreach ($option in $configs.options)     
        #if(!$option.disabled || $option.disabled == false || ($value && $value == $option.optionId.toString()))
          #if ($value && $value.equals($option.optionId.toString())) #set ($selected = ' selected="selected"') #else #set ($selected = '') #end
            #if ( $selected == $option.optionId.toString() )              
              <option selected="selected"  #if($value="Please a value from the list") #set($value ="Not Applicable")
                    #end>$textutils.htmlEncode($!value)</option>
               #end
            #else                
                <option value=$option.optionId.toString()>$option.toString()</option>
            #end               
          #end
        #end    
</select>   
#customControlFooter ($action $customField.id $fieldLayoutItem.fieldDescription $displayParameters $auiparams)

0 votes
SRIDHAR November 20, 2012

The options i tried are

Trial 1
----------
#customControlHeader ($action $customField.id $customField.name $fieldLayoutItem.required $displayParameters $auiparams)
#if($value = "Please a value from the list")
  #set($value ="Not Applicable")
#end
<select class="select" name="$customField.id" id="$customField.id" style="width:auto">   
     #foreach ($option in $configs.options)     
        #if(!$option.disabled || $option.disabled == false || ($value && $value == $option.optionId.toString()))
          #if ($value && $value.equals($option.optionId.toString())) #set ($selected = ' selected="selected"') #else #set ($selected = '') #end
            #if ( $selected == $option.optionId.toString() )              
              <option selected="selected" value="$textutils.htmlEncode($!value)">$textutils.htmlEncode($!value) </option>
               #end
            #else                
                <option value=$option.optionId.toString()>$option.toString()</option>
            #end               
          #end
        #end    
</select>   
#customControlFooter ($action $customField.id $fieldLayoutItem.fieldDescription $displayParameters $auiparams)
0 votes
SRIDHAR November 20, 2012
Trial 2
----------

#customControlHeader ($action $customField.id $customField.name $fieldLayoutItem.required $displayParameters $auiparams)
<select class="select" name="$customField.id" id="$customField.id" style="width:auto">   
     #foreach ($option in $configs.options)     
        #if(!$option.disabled || $option.disabled == false || ($value && $value == $option.optionId.toString()))
          #if ($value && $value.equals($option.optionId.toString())) #set ($selected = ' selected="selected"') #else #set ($selected = '') #end
            #if ( $selected == $option.optionId.toString() )              
              <option selected="selected" value="$textutils.htmlEncode($!value)">
                   #if($textutils.htmlEncode($!value) = "Please a value from the list")
                         #set($value ="Not Applicable")
                    #end</option>
               #end
            #else                
                <option value=$option.optionId.toString()>$option.toString()</option>
            #end               
          #end
        #end    
</select>   
#customControlFooter ($action $customField.id $fieldLayoutItem.fieldDescription $displayParameters $auiparams)

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 14, 2012

You need to tell us what you've tried really.

Personally, I'd take a different approach and edit the actual text that's coming through - https://developer.atlassian.com/display/JIRADEV/Customizing+Text

fcri July 25, 2017

Hello @Nic Brough -Adaptavist- I'm trying to use Jira editor in my plugin. But doesn't render properly and don't show the toolbar above the edit area. Can you help me?

TAGS
AUG Leaders

Atlassian Community Events