apache wicket

In Apache Wicket, so-called models are used to link the data and the representation in the graphical user interface. If models aren't used, one will never see the new value as during construction a fixed value is used. The GUI element will not look for a new value during a second rendering.

The situation can be corrected by passing a model to the used GUI element (e.g. ba passing the model to the GUI element's constructor).

Technology:

Values not updated in the GUI frontend of a JEE application using the Apache Wicket framework

I am using the Apache Wicket 6.0 framework as the GUI framework in my web application. I have the following problem: after changing the data, the value displayed in the text field does not change according to the data that has been entered respectively calculated after entering it and pressing a button to perform a calculation. Unfortunately, I have to refresh the site. Why does this behavior occur?
Subscribe to apache wicket