Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-21 Thread Gwyn Evans
Now added to the Wiki's ListView page - http://www.wicket-wiki.org.uk/wiki/index.php/ListView#FAQ /Gwyn On 21/08/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > if you search the list you will see a ton of messages that explain this, > thats why i didnt bother doing it here for the hundredth time

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-21 Thread Igor Vaynberg
if you search the list you will see a ton of messages that explain this, thats why i didnt bother doing it here for the hundredth time :)-IgorOn 8/20/06, Roman Mandeleil <[EMAIL PROTECTED]> wrote: Ok, thanks, now it works fine, but do you have some good explanation to thatbehaviourit is not intuit

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-21 Thread Martijn Dashorst
However, if you take a closer look at the markup, and the markup that gets generated, you can clearly see the problem for a listview: In the server side markup: some value In the client side markup: foo bar foobar What you typically want to do is to redraw the complete part, because most br

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-20 Thread Roman Mandeleil
Ok, thanks, now it works fine, but do you have some good explanation to that behaviour it is not intuitive to put a ListView into some WebMarkupContainer just for Ajax update, because ListView itself is a WebMarkupContainer Scott Swank wrote: > > I can vouch for it's common-ness. > > On 8/20

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-20 Thread Scott Swank
I can vouch for it's common-ness. On 8/20/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > you cannot repaint listview directly via ajax - this is a common mistake. > try putting it into a webmarkup container and repainting that container > instead. > > -Igor > > > > On 8/20/06, Roman Mandeleil <[EM

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-20 Thread Igor Vaynberg
you cannot repaint listview directly via ajax - this is a common mistake. try putting it into a webmarkup container and repainting that container instead.-IgorOn 8/20/06, Roman Mandeleil <[EMAIL PROTECTED]> wrote: Check some problem in the attached file (some notes in the source)http://www.nabble.

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-20 Thread Roman Mandeleil
Check some problem in the attached file (some notes in the source) http://www.nabble.com/user-files/235691/ListPage.java ListPage.java igor.vaynberg wrote: > > yes, it shouldnt be happening thats why i wanted to see your code/markup. > > have you tried in ffox and ie? sometimes when ajax u

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-19 Thread Igor Vaynberg
yes, it shouldnt be happening thats why i wanted to see your code/markup.have you tried in ffox and ie? sometimes when ajax updating trs you end up with duplicates - so it may just be a case of crappy outerhtml support in the browser. -IgorOn 8/19/06, Roman Mandeleil <[EMAIL PROTECTED]> wrote: I ca

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-19 Thread Roman Mandeleil
I can provide you some sample but I think it will complicate the situation , I want to understand the principle of how it works, I thought the model should be full synchronized with the html on the screen, but maybe the idea is something else ? igor.vaynberg wrote: > > how about some code of t

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-18 Thread Igor Vaynberg
how about some code of that page?-IgorOn 8/18/06, Roman Mandeleil <[EMAIL PROTECTED] > wrote:I really don't understand how it should works, I have a ListView and some model attached to it with two elements , some how every self updating cycleI got one element added to the list on the screen, any id

[Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-18 Thread Roman Mandeleil
I really don't understand how it should works, I have a ListView and some model attached to it with two elements , some how every self updating cycle I got one element added to the list on the screen, any ideas ? -- View this message in context: http://www.nabble.com/ListView-and-AjaxSelfUpdatin