Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.8.2-EE-GA_P02
-
Fix Version/s: 1.8.2-EE-GA_P02
-
Component/s: ICE-Components
-
Labels:None
-
Environment:ICEfaces trunk (EE P02 development)
Description
When using the ice:selectManyMenu or ice:selectManyList components with partialSubmit=true, the actual selected menu item is not always being submitted to the server. This is a regression since EE 1.8.2.GA_P01, which works correctly.
To reproduce, use the Facelet Comp. Showcase, Selection demo. Try using the keyboard to rapidly select different values in the Cars selection (ice:selectManyMenu) to see the problem.
Note that the issue occurs with or without the "blockUIOnSubmit=true" is specified.
To reproduce, use the Facelet Comp. Showcase, Selection demo. Try using the keyboard to rapidly select different values in the Cars selection (ice:selectManyMenu) to see the problem.
Note that the issue occurs with or without the "blockUIOnSubmit=true" is specified.
When the event is null or undefined while invoking icePartialSubmit/iceSubmit the bridge creates an UnknownEvent as a no-op. The fix for
ICE-4308added a Event.type() method which should have had a different implementation for UnknownEvents to avoid null pointer errors.The solution applied overrides Event.type() method for unknown events (original event is null/undefined).