theigl commented on PR #592:
URL: https://github.com/apache/wicket/pull/592#issuecomment-1576425502
In my project, we usually do this when we don't want a page to be serialized
after an ajax request:
```java
private void untouchPage(Page page) {
if (Session.exists()) {
// Do not re-serialize page
Session.get().getPageManager().untouchPage(page);
}
}
```
Did you consider this approach as well?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]