You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@click.apache.org by "Bob Schellink (JIRA)" <ji...@apache.org> on 2010/03/14 03:32:27 UTC

[jira] Resolved: (CLK-595) Can't apply to TextField label the same style as the one assigned to the Control

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

Bob Schellink resolved CLK-595.
-------------------------------

    Resolution: Fixed

Added new Field methods added for controlling the label style and style class.

Also added new methods for providing style and class hints to a parent container such as Form and FieldSet

> Can't apply to TextField label the same style as the one assigned to the Control
> --------------------------------------------------------------------------------
>
>                 Key: CLK-595
>                 URL: https://issues.apache.org/jira/browse/CLK-595
>             Project: Click
>          Issue Type: New Feature
>          Components: core
>    Affects Versions: 2.1.0 RC1
>         Environment: tomcat on linux
>            Reporter: Stefax
>             Fix For: 2.2.0
>
>
> I need to set the same margin-bottom to the TextFiled and its label, but when I call the method setStyle("margin-bottom", "20px") of the TextField, it does not set the same margin/style to its label; for the java code:
> TextField cld = new TextField("cld", "My Text Field: ");
>  cld.setSize(20);
> cld.setRequired(false);
> cld.setStyle("margin-bottom", "20px");            
> form.add(cld);
> the resultant html code (generated putting $form in the html) is:
> <td class="fields" align="left"><label for="form_cld">My Text Field: </label>&#160;</td>
> <td align="left"><input type="text" name="cld" id="form_cld" value="" size="20" style="margin-bottom:20px;"/></td>
> As you can see the style is applied to the intput text, but not to its label.
> This generate a very ugly page, where all the label are rendered not near the fields they refer to.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.