Is it possible to use an implementation of DataTable (like
AjaxFallbackDefaultDataTable) with unserializable data?
My page throws the usual NotSerializableException, in spite of using
LoadableDetachableModel everywhere I can.
I am tearing my hair out to understand where the problem comes from. Can
someone please help?
Thanks.
I want to precise that I use a LoadableDetachableModel in the method model()
of my DataProvider:
@Override
public IModel<Application> model(final Contact object) {
return new LoadableDetachableModel<Contact>() {
@Override
protected Contact load() {
return object;
}
};
}
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/DataTable-and-unserializable-data-tp4659659.html
Sent from the Users forum mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]