I am overriding the addNewListener of my Crud component to generate random data for the form component values, with the goal of easier testing. The technique is documented here: https://vaadin.com/docs/latest/components/crud#item-initialization
I am supplying all form components with a value, however the ‘Save’ button is not automatically activated. It stays grey until i go into one of the form fields and make a change. Enabling the button from the listener has no effect, crud.getSaveButton().setEnabled(true);
. Is there a way to programmatically enable it ? You can reproduce the behaviour on above link.