Hi! I have a component that needs to listen to events from a form that resides in the containing page. The component takes care of viewing a list of selectable items, and this list and its PrimaryKeyEncoder needs to be initialized through the prepare event of the containing form.
In my mind, it seems perfectly logical that form events like PREPARE and SUBMIT would trigger methods (onPrepare, onSubmit) in components inside the form component on the page. But in my setup now, only the onPrepare and onSubmit methods of the page is called. Where am I getting this wrong? Aren't components supposed to get access to form events from their containers? Regards Inge