You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Lukasz Lenart (JIRA)" <ji...@apache.org> on 2012/08/31 21:31:07 UTC

[jira] [Commented] (WW-3231) s:radio cssStyle,cssClass attributes not respected when placed within s:form

    [ https://issues.apache.org/jira/browse/WW-3231?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13446282#comment-13446282 ] 

Lukasz Lenart commented on WW-3231:
-----------------------------------

The problem is that the generated <label/> tag doesn't use provided cssClass and cssStyle
                
> s:radio cssStyle,cssClass attributes not respected when placed within s:form
> ----------------------------------------------------------------------------
>
>                 Key: WW-3231
>                 URL: https://issues.apache.org/jira/browse/WW-3231
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Plugin - Tags
>    Affects Versions: 2.1.6
>         Environment: Struts-2.1.6
> FF 3.0.11
>            Reporter: Martin Gainty
>            Priority: Minor
>             Fix For: 2.3.5
>
>
> ///styles/main.css contents:
> radio.CustomClass {
>      border: 1px solid black;
>      background-color: InfoBackground;
>      align:left;
>      valign:middle
> }
> //test_for_lee.jsp contents
> <%@ taglib prefix="s" uri="/struts-tags" %>
> <%@ taglib prefix="sx" uri="/struts-dojo-tags" %>
> <%@ page contentType="text/html;charset=UTF-8" language="java" %>
> <html>
> <head>
> <title>test for lee</title>
> <link href="<s:url value='/styles/main.css' encode='false' includeParams='none'/>" rel="stylesheet" type="text/css" media="all"/>
> </head>
> <body>
> <s:form action="shippingCostsAjax" method="post" id="shipzipform" name="shipzipform">
> <s:textfield name="shipzip" id="shipzip" size="8" label="Enter your ship-to zipcode to view shipping costs" labelposition="left" />
> <s:radio list="{'0','1','2'}" name="currentEmployee.level" cssClass="radio.CustomClass" cssStyle="{ align:left;border-style:none; }"/>
> <sx:submit name="ajaxShippingSubmit" id="ajaxShippingSubmit" targets="shippingDiv" value="Get Shipping Costs" formId="shipzipform"
>  align="left" ajaxAfterValidation="true" executeScripts="true"
>  separateScripts="true" />
> </s:form>
> <s:radio list="{'0'}" name="lookup_id3" cssStyle="{ align:left; }" value="0"/>
> <br>
> <s:radio list="{'1'}" name="lookup_id3" cssClass="radio.CustomClass" value="1" />
> </body>
> </html>
> when placed inside s:form s:radio cssClass and cssStyle attributes of s:radio within s:form are not respected and tag code is not rendered according to specified cssStyle or cssClass attributes of the s:radio tag
> when placed outside s:form s:radio cssClass and cssStyle attributes of s:radio ARE respected and DO render according to the supplied cssStyle or cssClass attributes of the s:radio tag

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira