Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 4.1.1
-
Fix Version/s: 4.2
-
Component/s: ACE-Components
-
Labels:None
-
Environment:ICEfaces
-
Assignee Priority:P1
Description
ace:simpleSelectOneMenu writes out the 'option' tags as text which ends up as being represent in DOM as a text node. The delta submit feature expects to have access to 'option' nodes in the DOM so that previous parameters can be calculated off the values stored into these nodes.
Not only the delta submit won't work but the DOM diff also won't be as efficient as it should since it will always generate updates for all the options, in bulk.
Not only the delta submit won't work but the DOM diff also won't be as efficient as it should since it will always generate updates for all the options, in bulk.
Activity
- All
- Comments
- History
- Activity
- Remote Attachments
- Subversion
r50012: modified the rendering process to render actual 'option' elements using the ResponseWriter API, instead of rendering the options markup as a blob of text