[richfaces-issues] [JBoss JIRA] Created: (RF-1704) HtmlColumn has width fixed to 100px if not set.

Piotr Witusowski (JIRA) jira-events at lists.jboss.org
Wed Dec 19 12:37:44 EST 2007


HtmlColumn has width fixed to 100px if not set.
-----------------------------------------------

                 Key: RF-1704
                 URL: http://jira.jboss.com/jira/browse/RF-1704
             Project: RichFaces
          Issue Type: Bug
    Affects Versions: 3.1.3
            Reporter: Piotr Witusowski
            Priority: Minor


HtmlColumn class has following generated code:

    public String getWidth()
    {
        if(null != _width)
            return _width;
        ValueBinding vb = getValueBinding("width");
        if(null != vb)
            return (String)vb.getValue(getFacesContext());
        else
            return "100px";
    }

It would be a lot nicer if it returns NULL when no width is set.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the richfaces-issues mailing list