Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Velocity file

SRIDHAR
Contributor
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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

0 votes
SRIDHAR
Contributor
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
Contributor
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
Contributor
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-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
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?

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

TAGS
AUG Leaders

Atlassian Community Events