Hi
Is there a way to prioritise the order in which listeners such as ValueChangeListeners, ItemPropertyChangeListeners and ClickListeners are fired?
We have a number of events that are fired (either ValueChangeListenres or ItemPropertyChangeListenres) when a value is changed, however we want to prevent those listeners from firing if the user clicks the cancel button in either an entity combined screen or edit screen. We have a defined process the user must go through if a value is changed and this works great by initiating it through the listeners. However, the behaviour for the user is not as expected if they change a value in a textfield and immediately clicks then screen cancel button.
The valuechange listeners fire before the cancelbtn.clickeventlistener which means that despite the user selecting cancel they are taken through a process.
Thanks in advance