mirror of
https://github.com/apache/struts.git
synced 2026-08-11 01:27:14 +00:00
WW-2367 Call converter in select tag values
git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@760523 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -60,14 +60,14 @@
|
||||
<#if parameters.listKey??>
|
||||
<#if stack.findValue(parameters.listKey)??>
|
||||
<#assign itemKey = stack.findValue(parameters.listKey)/>
|
||||
<#assign itemKeyStr = itemKey.toString()/>
|
||||
<#assign itemKeyStr = stack.findString(parameters.listKey)/>
|
||||
<#else>
|
||||
<#assign itemKey = ''/>
|
||||
<#assign itemKeyStr = ''/>
|
||||
</#if>
|
||||
<#else>
|
||||
<#assign itemKey = stack.findValue('top')/>
|
||||
<#assign itemKeyStr = itemKey.toString()/>
|
||||
<#assign itemKeyStr = stack.findString('top')>
|
||||
</#if>
|
||||
<#if parameters.listValue??>
|
||||
<#if stack.findString(parameters.listValue)??>
|
||||
|
||||
Reference in New Issue
Block a user