CRUDList should deselect after action with clearSelection=true
Currently it keeps the visual selection but clears the actual this.selection. => There is a missing link.
TODO: Sync this.selection to table selection.
- Clearing the selection as is done in ActionList on Action if clearSelection is set does not visually clear the selection, just the selection-array used to keep the selection's state. This is not properly implemented. Eg. in CRUDList there is no mechanism that syncs the selection-array back to the UI state.
- Activating an action with clearSelection set always clears the selection-array. This might be unintended it the action is aborted. Maybe add a method for action to indicate clearing the selection.