You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Andrzej Jakubowski (JIRA)" <de...@myfaces.apache.org> on 2007/03/30 01:08:25 UTC

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

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


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.


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

Posted by "Simon Kitching (JIRA)" <de...@myfaces.apache.org>.
    [ 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.


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

Posted by "Mike Kienenberger (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/TOMAHAWK-947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12485376 ] 

Mike Kienenberger commented on TOMAHAWK-947:
--------------------------------------------

Please submit this in the form of a unified diff patch.

Thanks!


> 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
>
> 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.


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

Posted by "Andrzej Jakubowski (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/TOMAHAWK-947?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrzej Jakubowski updated TOMAHAWK-947:
----------------------------------------

    Status: Patch Available  (was: Open)

> 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
>
> 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.


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

Posted by "Leonardo Uribe (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/TOMAHAWK-947?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Leonardo Uribe updated TOMAHAWK-947:
------------------------------------

        Status: Resolved  (was: Patch Available)
      Assignee: Leonardo Uribe
    Resolution: Duplicate

Duplicate of TOMAHAWK-1184

> 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
>            Assignee: Leonardo Uribe
>         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.


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

Posted by "Alexander Giehl (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/TOMAHAWK-947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12566694#action_12566694 ] 

Alexander Giehl commented on TOMAHAWK-947:
------------------------------------------

Hi,
i can confirm the mentioned behaviour on xhtml-pages using FF2. the solution Andrzej posted fixes the problem here.

> 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.