-
New Feature
-
Resolution: Unresolved
-
Normal
-
None
-
None
-
None
-
None
-
None
User Story
As a developer, I use databinding to tie a value to view components.
If the user changes a value, but doesn't trigger an updating event (such as blur on a textbox), and the input component is removed from the page due to ZK workflows (ROD), or developer controlled workflows (changes to page caused by updates, such as changing a template in an apply), the event is not fired from client-side, and the value is not updated in the VM.
Acceptance Criteria
Provide a toggleable way to force an update event (on blur on inputComponent, etc) before a component is removed from the page.
Details
Not the same as using instant="true" or onChanging
These options will immediately commit the updated value to model after the user stops typing.
The goal in this case is to wait for user to trigger the update event (blur), but to also not loose a typed value in case of an object being unloaded.