You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org> on 2010/07/20 01:11:49 UTC

[jira] Created: (TAP5-1211) LinkSubmit broken in IE 7 mode

LinkSubmit broken in IE 7 mode
------------------------------

                 Key: TAP5-1211
                 URL: https://issues.apache.org/jira/browse/TAP5-1211
             Project: Tapestry 5
          Issue Type: Bug
          Components: tapestry-core
    Affects Versions: 5.2.0
            Reporter: Howard M. Lewis Ship


LinkSubmit makes use of Tapestry.remove(), whose implementation is broken in IE 7.

Once Tapestry.purge() operates on an element, it can't be deleted via $(element).remove()  because the remove function property will have been purged, thus:

  element.remove();

needs to be

  Element.remove(element);

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


[jira] Assigned: (TAP5-1211) LinkSubmit broken in IE 7 mode

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1211?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship reassigned TAP5-1211:
------------------------------------------

    Assignee: Howard M. Lewis Ship

> LinkSubmit broken in IE 7 mode
> ------------------------------
>
>                 Key: TAP5-1211
>                 URL: https://issues.apache.org/jira/browse/TAP5-1211
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.2.0
>            Reporter: Howard M. Lewis Ship
>            Assignee: Howard M. Lewis Ship
>
> LinkSubmit makes use of Tapestry.remove(), whose implementation is broken in IE 7.
> Once Tapestry.purge() operates on an element, it can't be deleted via $(element).remove()  because the remove function property will have been purged, thus:
>   element.remove();
> needs to be
>   Element.remove(element);

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


[jira] Commented: (TAP5-1211) LinkSubmit broken in IE 7 mode

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12890352#action_12890352 ] 

Hudson commented on TAP5-1211:
------------------------------

Integrated in tapestry-5.2-freestyle #159 (See [http://hudson.zones.apache.org/hudson/job/tapestry-5.2-freestyle/159/])
    TAP5-1211: LinkSubmit broken in IE 7 mode


> LinkSubmit broken in IE 7 mode
> ------------------------------
>
>                 Key: TAP5-1211
>                 URL: https://issues.apache.org/jira/browse/TAP5-1211
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.2.0
>            Reporter: Howard M. Lewis Ship
>            Assignee: Howard M. Lewis Ship
>             Fix For: 5.2.0
>
>
> LinkSubmit makes use of Tapestry.remove(), whose implementation is broken in IE 7.
> Once Tapestry.purge() operates on an element, it can't be deleted via $(element).remove()  because the remove function property will have been purged, thus:
>   element.remove();
> needs to be
>   Element.remove(element);

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


[jira] Closed: (TAP5-1211) LinkSubmit broken in IE 7 mode

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1211?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship closed TAP5-1211.
--------------------------------------

    Fix Version/s: 5.2.0
       Resolution: Fixed

> LinkSubmit broken in IE 7 mode
> ------------------------------
>
>                 Key: TAP5-1211
>                 URL: https://issues.apache.org/jira/browse/TAP5-1211
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.2.0
>            Reporter: Howard M. Lewis Ship
>            Assignee: Howard M. Lewis Ship
>             Fix For: 5.2.0
>
>
> LinkSubmit makes use of Tapestry.remove(), whose implementation is broken in IE 7.
> Once Tapestry.purge() operates on an element, it can't be deleted via $(element).remove()  because the remove function property will have been purged, thus:
>   element.remove();
> needs to be
>   Element.remove(element);

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


[jira] Closed: (TAP5-1211) LinkSubmit broken in IE 7 mode

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1211?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship closed TAP5-1211.
--------------------------------------

    Fix Version/s: 5.2.0
       Resolution: Fixed

> LinkSubmit broken in IE 7 mode
> ------------------------------
>
>                 Key: TAP5-1211
>                 URL: https://issues.apache.org/jira/browse/TAP5-1211
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.2.0
>            Reporter: Howard M. Lewis Ship
>            Assignee: Howard M. Lewis Ship
>             Fix For: 5.2.0
>
>
> LinkSubmit makes use of Tapestry.remove(), whose implementation is broken in IE 7.
> Once Tapestry.purge() operates on an element, it can't be deleted via $(element).remove()  because the remove function property will have been purged, thus:
>   element.remove();
> needs to be
>   Element.remove(element);

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


[jira] Commented: (TAP5-1211) LinkSubmit broken in IE 7 mode

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12890352#action_12890352 ] 

Hudson commented on TAP5-1211:
------------------------------

Integrated in tapestry-5.2-freestyle #159 (See [http://hudson.zones.apache.org/hudson/job/tapestry-5.2-freestyle/159/])
    TAP5-1211: LinkSubmit broken in IE 7 mode


> LinkSubmit broken in IE 7 mode
> ------------------------------
>
>                 Key: TAP5-1211
>                 URL: https://issues.apache.org/jira/browse/TAP5-1211
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.2.0
>            Reporter: Howard M. Lewis Ship
>            Assignee: Howard M. Lewis Ship
>             Fix For: 5.2.0
>
>
> LinkSubmit makes use of Tapestry.remove(), whose implementation is broken in IE 7.
> Once Tapestry.purge() operates on an element, it can't be deleted via $(element).remove()  because the remove function property will have been purged, thus:
>   element.remove();
> needs to be
>   Element.remove(element);

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


[jira] Assigned: (TAP5-1211) LinkSubmit broken in IE 7 mode

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1211?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship reassigned TAP5-1211:
------------------------------------------

    Assignee: Howard M. Lewis Ship

> LinkSubmit broken in IE 7 mode
> ------------------------------
>
>                 Key: TAP5-1211
>                 URL: https://issues.apache.org/jira/browse/TAP5-1211
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.2.0
>            Reporter: Howard M. Lewis Ship
>            Assignee: Howard M. Lewis Ship
>
> LinkSubmit makes use of Tapestry.remove(), whose implementation is broken in IE 7.
> Once Tapestry.purge() operates on an element, it can't be deleted via $(element).remove()  because the remove function property will have been purged, thus:
>   element.remove();
> needs to be
>   Element.remove(element);

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