FileUpload class still implements IClusterable

2019-12-03 Thread Ernesto Reinaldo Barreiro
Hi, FileUpload still implements IClusterable but it contains a field of type FileItem: which is no longer Serializable. Should IClusterable be dropped? -- Regards - Ernesto Reinaldo Barreiro

Re: FileUpload class still implements IClusterable

2019-12-03 Thread Martin Grigorov
Hi Ernesto, Yes, I think FileUpload should not be Serializable. FileUploadField uses transient reference to the list of file uploads for this reason: https://github.com/apache/wicket/blob/ad6ecac7fdebefc25d310361f3a92aa481c36b1f/wicket-core/src/main/java/org/apache/wicket/markup/html/form/upload/F

Re: FileUpload class still implements IClusterable

2019-12-03 Thread Ernesto Reinaldo Barreiro
Hi Martin, On Tue, Dec 3, 2019 at 3:09 PM Martin Grigorov wrote: > Hi Ernesto, > > Yes, I think FileUpload should not be Serializable. > FileUploadField uses transient reference to the list of file uploads for > this reason: > > https://github.com/apache/wicket/blob/ad6ecac7fdebefc25d310361f3a9

Re: FileUpload class still implements IClusterable

2019-12-03 Thread Martin Grigorov
On Tue, Dec 3, 2019 at 3:42 PM Ernesto Reinaldo Barreiro wrote: > Hi Martin, > > > On Tue, Dec 3, 2019 at 3:09 PM Martin Grigorov > wrote: > > > Hi Ernesto, > > > > Yes, I think FileUpload should not be Serializable. > > FileUploadField uses transient reference to the list of file uploads for >

Partial update of DataGridView when adding new items

2019-12-03 Thread Chris Colman
We're using a DataGridView and we're happily doing partial updates of existing items for select/deselect and when content changes. Updating existing items is fine because we can work out the changed Item (Component) and just add it to the AJAX request target. However, we're wondering if it's