You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Gunther Schmidl (JIRA)" <de...@myfaces.apache.org> on 2008/01/30 13:21:38 UTC

[jira] Issue Comment Edited: (TOMAHAWK-1184) Vertical Week Divider incorrectly rendered in IE

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

gschmidl edited comment on TOMAHAWK-1184 at 1/30/08 4:19 AM:
--------------------------------------------------------------------

That's strange. I tested with both rowspan and rowSpan, and only the latter worked -- in the former case, the layout in IE7 is broken. Firefox 2 seems to accept both cases.

According to MSDN, it's rowSpan for IE: http://msdn2.microsoft.com/en-us/library/ms534378(VS.85).aspx, and IE Developer Toolbar also ignores "rowspan" as opposed to "rowSpan" as a property.

[EDIT: posted this about 10 seconds after the previous comment showed up. I guess that clears it up]


      was (Author: gschmidl):
    That's strange. I tested with both rowspan and rowSpan, and only the latter worked -- in the former case, the layout in IE7 is broken. Firefox 2 seems to accept both cases.

According to MSDN, it's rowSpan for IE: http://msdn2.microsoft.com/en-us/library/ms534378(VS.85).aspx, and IE Developer Toolbar also ignores "rowspan" as opposed to "rowSpan" as a property.

For further information that will hopefully help clear up this mystery: I'm using Tomahawk with JSF 1.1 and Facelets 1.1.13.


  
> Vertical Week Divider incorrectly rendered in IE
> ------------------------------------------------
>
>                 Key: TOMAHAWK-1184
>                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1184
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: Calendar
>    Affects Versions: 1.1.7-SNAPSHOT
>         Environment: Windows XP SP3 w/IE7
>            Reporter: Gunther Schmidl
>            Priority: Minor
>             Fix For: 1.1.7-SNAPSHOT
>
>   Original Estimate: 0h
>  Remaining Estimate: 0h
>
> The latest version of popcalendar.js does not correctly render the vertical week divider due to a typo in the javascript file.
> The solution is to replace org/apache/myfaces/custom/calendar/resource/popcalendar.js line 1217
> dividerCell.setAttribute("rowspan", "7");
> with
> dividerCell.setAttribute("rowSpan", "7");
> and IE will work correctly.

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