[ 
https://issues.apache.org/jira/browse/WW-3995?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lukasz Lenart resolved WW-3995.
-------------------------------
       Resolution: Not A Problem
         Assignee: Lukasz Lenart
    Fix Version/s:     (was: 2.5.x)
                   2.5.6

{{reset.ftl}} already contains support for {{id}} parameter

{code:xml}
<#if parameters.id??>
    id="wwctrl_${parameters.id}"<#rt/>
</#if>
{code}

> please change reset.ftl so html id is not lost
> ----------------------------------------------
>
>                 Key: WW-3995
>                 URL: https://issues.apache.org/jira/browse/WW-3995
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Plugin - Tags
>    Affects Versions: 2.3.8
>         Environment: Struts 2 and spring using freemarker
>            Reporter: Saman Moshafi
>            Assignee: Lukasz Lenart
>              Labels: patch
>             Fix For: 2.5.6
>
>
> Using this two lines in JSP:
> {code:html}
> <s:submit id="advsearchsubmit" value="Search" cssClass="tinput" 
> title="Search" />
> <s:reset id="advsearchreset" value="Clear" cssClass="tinput" title="Clear" />
> {code}
> will generate 
> {code:html}
> <s:submit id="submit_id" value="Search" cssClass="tinput" title="Search" />
> <s:reset id="reset_id" value="Clear" cssClass="tinput" title="Clear" />
> {code}
> will generate
> {code:html}
> <input type="submit" id="submit_id" value="Search" class="tinput" 
> title="Search"/>
> <input type="reset" name="Clear" value="Clear" class="tinput" title="Clear"/>
> {code}
> The reset.ftl file should be modified:
> add
> {code:html}
> <#if parameters.id??>
>  id="${parameters.id?html}"<#rt/>
> </#if>
> {code}
> after
> {code:html}
> <button type="reset"<#rt/>
> {code}
> and also
> {code:html}
> <#if parameters.id??>
>  id="${parameters.id?html}"<#rt/>
> </#if>
> {code}
> after
> {code:html}
> <input type="reset"<#rt/>
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to