Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: EE-3.0.0.GA_P01
-
Fix Version/s: 3.2
-
Component/s: ACE-Components, QA
-
Labels:None
-
Environment:icefaces-3.0.x-maintenance revision# 30357 or earlier.
Server: tomcat6
Browser: FF3.6, IE7, GoogleChrome21
Last Known working revision in Maintenance Branch: N/A
-
Workaround Exists:Yes
-
Workaround Description:
Description
Slider (All Browsers) - ajax - On initial drag, unable to drag slider to the far right although trying to click and hold slider wil trigger ajax event
To Reproduce:
-Build fileEntryApplication using rev#30357 (or earlier) of the maintenance branch (make sure it is building against the maintenance branch)
-deploy war file onto tomcat6
-run slider in Firefox3.6, IE7 or Chrome21
-go to sliderAjax
-click and try executing a drag on the slider
-notice that ajax event occurs but slider will not slide to the far right side at all (only happens on initial click and drag, will work thereon after).
To Reproduce:
-Build fileEntryApplication using rev#30357 (or earlier) of the maintenance branch (make sure it is building against the maintenance branch)
-deploy war file onto tomcat6
-run slider in Firefox3.6, IE7 or Chrome21
-go to sliderAjax
-click and try executing a drag on the slider
-notice that ajax event occurs but slider will not slide to the far right side at all (only happens on initial click and drag, will work thereon after).
Committed a fix to the trunk at revision 31191. The fix consists in separating the script into two different script tags. The first one simply initializes the slider, without setting a value. The second one simply updates the value of the slider, without having to recreate the whole slider. The reason why this problem was occurring was that whenever the user started to move the slider, a request was made and since the value changed, the script to initialize the slider was updated because it contained the new value, and the whole slider had to be recreated.