I have also noticed this. It only seems to happen when the form
accesses variables stored inside the @Persisted class.
I'm not sure if this is a bug or just a limitation of @Persist. Only
workaround I have for now is to move all the variables into the
tapestry component, and then add @Persist to
I must be missing something, because my form does not update my page
property.
public class SearchItems{
...
@Property @Persist
private SearchOptions searchOptions;
@Inject
private Block searchOutput;
public void onPrepareForRender() {
System.out.pr