You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Paul Field (JIRA)" <ji...@apache.org> on 2009/05/15 15:02:46 UTC

[jira] Created: (TAP5-707) Yellow highlight remains on updated zone if zone is re-updated too quickly

Yellow highlight remains on updated zone if zone is re-updated too quickly
--------------------------------------------------------------------------

                 Key: TAP5-707
                 URL: https://issues.apache.org/jira/browse/TAP5-707
             Project: Tapestry 5
          Issue Type: Bug
          Components: tapestry-core
    Affects Versions: 5.1.0.5
            Reporter: Paul Field


By default when a zone updates it shows a yellow highlight that fades away. However, if the zone is updated before the highlight has completely faded then the highlight remains (until the page is completely refreshed).

To see this in action, go to the JumpStart demo application:
http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/javascript/ajax

And *double*-click the link "Refresh time2 only - this is an AJAX-enabled ActionLink".

(Although JumpStart is currently based on T5.0.18 we see the same behaviour on T5.1.0.5)

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


[jira] Updated: (TAP5-707) Yellow highlight remains on updated zone if zone is re-updated too quickly

Posted by "Ulrich Stärk (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-707?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ulrich Stärk updated TAP5-707:
------------------------------

     Affects Version/s: 5.2
         Fix Version/s: 5.2.0
                        5.1.0.8
    Remaining Estimate: 0h
     Original Estimate: 0h

> Yellow highlight remains on updated zone if zone is re-updated too quickly
> --------------------------------------------------------------------------
>
>                 Key: TAP5-707
>                 URL: https://issues.apache.org/jira/browse/TAP5-707
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.2, 5.1.0.5
>            Reporter: Paul Field
>            Assignee: Ulrich Stärk
>             Fix For: 5.2.0, 5.1.0.8
>
>   Original Estimate: 0h
>  Remaining Estimate: 0h
>
> By default when a zone updates it shows a yellow highlight that fades away. However, if the zone is updated before the highlight has completely faded then the highlight remains (until the page is completely refreshed).
> To see this in action, go to the JumpStart demo application:
> http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/javascript/ajax
> And *double*-click the link "Refresh time2 only - this is an AJAX-enabled ActionLink".
> (Although JumpStart is currently based on T5.0.18 we see the same behaviour on T5.1.0.5)

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


[jira] Resolved: (TAP5-707) Yellow highlight remains on updated zone if zone is re-updated too quickly

Posted by "Ulrich Stärk (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-707?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ulrich Stärk resolved TAP5-707.
-------------------------------

    Resolution: Fixed

> Yellow highlight remains on updated zone if zone is re-updated too quickly
> --------------------------------------------------------------------------
>
>                 Key: TAP5-707
>                 URL: https://issues.apache.org/jira/browse/TAP5-707
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.2, 5.1.0.5
>            Reporter: Paul Field
>            Assignee: Ulrich Stärk
>             Fix For: 5.1.0.8, 5.2.0
>
>   Original Estimate: 0h
>  Remaining Estimate: 0h
>
> By default when a zone updates it shows a yellow highlight that fades away. However, if the zone is updated before the highlight has completely faded then the highlight remains (until the page is completely refreshed).
> To see this in action, go to the JumpStart demo application:
> http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/javascript/ajax
> And *double*-click the link "Refresh time2 only - this is an AJAX-enabled ActionLink".
> (Although JumpStart is currently based on T5.0.18 we see the same behaviour on T5.1.0.5)

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


[jira] Commented: (TAP5-707) Yellow highlight remains on updated zone if zone is re-updated too quickly

Posted by "Ulrich Stärk (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-707?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12731455#action_12731455 ] 

Ulrich Stärk commented on TAP5-707:
-----------------------------------

It also happens in 5.2.0-SNAPSHOT.

The problem is the way the highlight effect determines it's end color:

>From effects.js, lines 498 and 499:

if (!this.options.endcolor)
  this.options.endcolor = this.element.getStyle('background-color').parseColor('#ffffff');

The end color is the color of the element to fade or white if that can't be parsed. Since the endcolor is determined while the fade effect is still running, it is some variation of yellow. A solution could be to determine the endcolor on page load and set an explicit end color for the hilight effect to use.

> Yellow highlight remains on updated zone if zone is re-updated too quickly
> --------------------------------------------------------------------------
>
>                 Key: TAP5-707
>                 URL: https://issues.apache.org/jira/browse/TAP5-707
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.1.0.5
>            Reporter: Paul Field
>
> By default when a zone updates it shows a yellow highlight that fades away. However, if the zone is updated before the highlight has completely faded then the highlight remains (until the page is completely refreshed).
> To see this in action, go to the JumpStart demo application:
> http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/javascript/ajax
> And *double*-click the link "Refresh time2 only - this is an AJAX-enabled ActionLink".
> (Although JumpStart is currently based on T5.0.18 we see the same behaviour on T5.1.0.5)

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


[jira] Commented: (TAP5-707) Yellow highlight remains on updated zone if zone is re-updated too quickly

Posted by "Ulrich Stärk (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-707?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12731455#action_12731455 ] 

Ulrich Stärk commented on TAP5-707:
-----------------------------------

It also happens in 5.2.0-SNAPSHOT.

The problem is the way the highlight effect determines it's end color:

>From effects.js, lines 498 and 499:

if (!this.options.endcolor)
  this.options.endcolor = this.element.getStyle('background-color').parseColor('#ffffff');

The end color is the color of the element to fade or white if that can't be parsed. Since the endcolor is determined while the fade effect is still running, it is some variation of yellow. A solution could be to determine the endcolor on page load and set an explicit end color for the hilight effect to use.

> Yellow highlight remains on updated zone if zone is re-updated too quickly
> --------------------------------------------------------------------------
>
>                 Key: TAP5-707
>                 URL: https://issues.apache.org/jira/browse/TAP5-707
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.1.0.5
>            Reporter: Paul Field
>
> By default when a zone updates it shows a yellow highlight that fades away. However, if the zone is updated before the highlight has completely faded then the highlight remains (until the page is completely refreshed).
> To see this in action, go to the JumpStart demo application:
> http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/javascript/ajax
> And *double*-click the link "Refresh time2 only - this is an AJAX-enabled ActionLink".
> (Although JumpStart is currently based on T5.0.18 we see the same behaviour on T5.1.0.5)

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


[jira] Assigned: (TAP5-707) Yellow highlight remains on updated zone if zone is re-updated too quickly

Posted by "Ulrich Stärk (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-707?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ulrich Stärk reassigned TAP5-707:
---------------------------------

    Assignee: Ulrich Stärk

> Yellow highlight remains on updated zone if zone is re-updated too quickly
> --------------------------------------------------------------------------
>
>                 Key: TAP5-707
>                 URL: https://issues.apache.org/jira/browse/TAP5-707
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.1.0.5
>            Reporter: Paul Field
>            Assignee: Ulrich Stärk
>
> By default when a zone updates it shows a yellow highlight that fades away. However, if the zone is updated before the highlight has completely faded then the highlight remains (until the page is completely refreshed).
> To see this in action, go to the JumpStart demo application:
> http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/javascript/ajax
> And *double*-click the link "Refresh time2 only - this is an AJAX-enabled ActionLink".
> (Although JumpStart is currently based on T5.0.18 we see the same behaviour on T5.1.0.5)

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


[jira] Assigned: (TAP5-707) Yellow highlight remains on updated zone if zone is re-updated too quickly

Posted by "Ulrich Stärk (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-707?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ulrich Stärk reassigned TAP5-707:
---------------------------------

    Assignee: Ulrich Stärk

> Yellow highlight remains on updated zone if zone is re-updated too quickly
> --------------------------------------------------------------------------
>
>                 Key: TAP5-707
>                 URL: https://issues.apache.org/jira/browse/TAP5-707
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.1.0.5
>            Reporter: Paul Field
>            Assignee: Ulrich Stärk
>
> By default when a zone updates it shows a yellow highlight that fades away. However, if the zone is updated before the highlight has completely faded then the highlight remains (until the page is completely refreshed).
> To see this in action, go to the JumpStart demo application:
> http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/javascript/ajax
> And *double*-click the link "Refresh time2 only - this is an AJAX-enabled ActionLink".
> (Although JumpStart is currently based on T5.0.18 we see the same behaviour on T5.1.0.5)

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


[jira] Updated: (TAP5-707) Yellow highlight remains on updated zone if zone is re-updated too quickly

Posted by "Ulrich Stärk (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-707?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ulrich Stärk updated TAP5-707:
------------------------------

     Affects Version/s: 5.2
         Fix Version/s: 5.2.0
                        5.1.0.8
    Remaining Estimate: 0h
     Original Estimate: 0h

> Yellow highlight remains on updated zone if zone is re-updated too quickly
> --------------------------------------------------------------------------
>
>                 Key: TAP5-707
>                 URL: https://issues.apache.org/jira/browse/TAP5-707
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.2, 5.1.0.5
>            Reporter: Paul Field
>            Assignee: Ulrich Stärk
>             Fix For: 5.2.0, 5.1.0.8
>
>   Original Estimate: 0h
>  Remaining Estimate: 0h
>
> By default when a zone updates it shows a yellow highlight that fades away. However, if the zone is updated before the highlight has completely faded then the highlight remains (until the page is completely refreshed).
> To see this in action, go to the JumpStart demo application:
> http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/javascript/ajax
> And *double*-click the link "Refresh time2 only - this is an AJAX-enabled ActionLink".
> (Although JumpStart is currently based on T5.0.18 we see the same behaviour on T5.1.0.5)

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


[jira] Resolved: (TAP5-707) Yellow highlight remains on updated zone if zone is re-updated too quickly

Posted by "Ulrich Stärk (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-707?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ulrich Stärk resolved TAP5-707.
-------------------------------

    Resolution: Fixed

> Yellow highlight remains on updated zone if zone is re-updated too quickly
> --------------------------------------------------------------------------
>
>                 Key: TAP5-707
>                 URL: https://issues.apache.org/jira/browse/TAP5-707
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.2, 5.1.0.5
>            Reporter: Paul Field
>            Assignee: Ulrich Stärk
>             Fix For: 5.1.0.8, 5.2.0
>
>   Original Estimate: 0h
>  Remaining Estimate: 0h
>
> By default when a zone updates it shows a yellow highlight that fades away. However, if the zone is updated before the highlight has completely faded then the highlight remains (until the page is completely refreshed).
> To see this in action, go to the JumpStart demo application:
> http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/javascript/ajax
> And *double*-click the link "Refresh time2 only - this is an AJAX-enabled ActionLink".
> (Although JumpStart is currently based on T5.0.18 we see the same behaviour on T5.1.0.5)

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