Re: Populating DataView on AJAX submit

2017-09-03 Thread Maxim Solodovnik
I would recommend 2 changes: < List logs = new ArrayList(); > final List logs = new ArrayList(); < List logs = getLogFilesData(); < logListP = new ListDataProvider(logs); > logs.clear(); logs.addAll(getLogFilesData()); I believe this will do the trick On Mon, Sep 4, 2017 at

Populating DataView on AJAX submit

2017-09-03 Thread JumpingIntoWicket
Hi I have a form that I add to it web markup container and attach a data view and then ajax button to a form. I want to populate this DataView on ajax button onSubmit. How to do it correctly? I saw this answer on Stack Overflow which is almost exactly what I want but it didn't solve my case. https

Re: FomGroup and BootstrapSelect not setting has-error CSS

2017-09-03 Thread David Beer
HI All Turns out this was because it wasn't being added to the ajax target on the submit for the form. All worked once updated the target. Thanks On 31 August 2017 at 15:06, Martin Grigorov wrote: > Hi David, > > On Thu, Aug 31, 2017 at 3:40 PM, David Beer > wrote: > > > Hi All > > > > Before