You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Simon Kitching (JIRA)" <de...@myfaces.apache.org> on 2008/01/04 22:55:34 UTC

[jira] Commented: (TOMAHAWK-947) Content of the popup is not displayed properly with RI 1.2

    [ https://issues.apache.org/jira/browse/TOMAHAWK-947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12556090#action_12556090 ] 

Simon Kitching commented on TOMAHAWK-947:
-----------------------------------------

The current code (rowSpan) works ok for me. However I've changed rowSpan->rowspan as that seems the right thing to use according to the html/xhtml specs.

Are you perhaps using xhtml? That might explain why you see this but most other people don't; html attributes are not case-sensitive while xhtml ones are (and rowspan is the correct case).

> Content of the popup is not displayed properly with RI 1.2
> ----------------------------------------------------------
>
>                 Key: TOMAHAWK-947
>                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-947
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: Calendar
>    Affects Versions: 1.1.5
>         Environment: Firefox 1.0.7, 2.0.0.3, Mozilla both on Windows XP and Fedora 3, JSF RI 1.2_03, JSF RI 1.2_04
>            Reporter: Andrzej Jakubowski
>         Attachments: patch.diff
>
>
> Content of the popup is not displayed properly - there is no grey line next to the weeks and all days in a month are moved one column to the left. So, there are no days under the last day of a week from the header.
> SOLUTION is: popcalendar.js
> line:
> dividerCell.setAttribute("rowSpan", "7");
> should be changed into:
> dividerCell.setAttribute("rowspan", "7");
> (notice the difference in 's')
> The new version works fine. (It also works fine with myFaces 1.1.4)
> Regards,
> Andrzej

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