Re: Partial update of DataGridView when adding new items

2019-12-04 Thread Martin Grigorov
Hi Chris, Please read https://wicketinaction.com/2008/10/repainting-only-newly-created-repeater-items-via-ajax/ The article explains how to do this with ListView but the idea is the same for all other repeaters. On Wed, Dec 4, 2019 at 6:53 AM Chris Colman wrote: > We're using a DataGridView

Re: Partial

2019-04-25 Thread Martin Grigorov
Hi, On Wed, Apr 24, 2019 at 8:14 PM Sibgha Nazir wrote: > I make the call like this > > @Override > > *public* *void* renderHead(IHeaderResponse response) > > { > > *super*.renderHead(response); > > > > Optional target = RequestCycle.*get* >

Re: Partial

2019-04-24 Thread Sibgha Nazir
I make the call like this @Override *public* *void* renderHead(IHeaderResponse response) { *super*.renderHead(response); Optional target = RequestCycle.*get* ().find(AjaxRequestTarget.*class*); *if* (!target.equals(Optional.*empty*()))

Re: Partial

2019-04-24 Thread Sibgha Nazir
In renderChart there is a line updating the chart panel like this PartialPageRequestHandler.add(chartPanel); On Wed, Apr 24, 2019 at 8:06 PM Sibgha Nazir wrote: > I make the call like this > > @Override > > *public* *void* renderHead(IHeaderResponse response) > > { > >

Re: Partial

2019-04-24 Thread Martin Grigorov
Hi, On Wed, Apr 24, 2019 at 5:08 PM Sibgha Nazir wrote: > Hello wicket developer, > > I am facing the following exception on re-rendering a wicket panel using > the code > > > > iPartialPageRequestHandler.add(chartPanel); > In which method of your code do you make that call ? How do

Re: partial Updating dataview with ajax

2011-02-08 Thread Igor Vaynberg
http://wicketinaction.com/2008/10/repainting-only-newly-created-repeater-items-via-ajax/ -igor 2011/2/8 LePirlouit BenoƮt lepirlo...@hotmail.com: Hi All, I'm currently using an AbstractAjaxTimerBehavior witch refresh onTimer the dataview I want to append some components to