You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Mathieu Jambou (JIRA)" <ji...@apache.org> on 2013/12/10 11:23:07 UTC

[jira] [Created] (WW-4253) radiomap xhtml template

Mathieu Jambou created WW-4253:
----------------------------------

             Summary: radiomap xhtml template
                 Key: WW-4253
                 URL: https://issues.apache.org/jira/browse/WW-4253
             Project: Struts 2
          Issue Type: Bug
          Components: Build Management
    Affects Versions: 2.3.4
            Reporter: Mathieu Jambou


In simple/radiomap.ftl setting of class and style occurs twice.

source code:

<#if parameters.cssClass??>
 class="${parameters.cssClass?html}"<#rt/>
</#if>
<#if parameters.cssStyle??>
 style="${parameters.cssStyle?html}"<#rt/>
</#if>
<#include "/${parameters.templateDir}/simple/css.ftl" />

And css.ftl handle class and style again.

My solution:

Remove:
<#if parameters.cssClass??>
 class="${parameters.cssClass?html}"<#rt/>
</#if>
<#if parameters.cssStyle??>
 style="${parameters.cssStyle?html}"<#rt/>
</#if>



--
This message was sent by Atlassian JIRA
(v6.1.4#6159)