Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-21 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/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 [EMAIL PROTECTED] wrote:
 
  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 updating trs you
 end
 up
   with duplicates - so it may just be a case of crappy outerhtml
 support
 in
   the browser.
  
   -Igor
  
  
   On 8/19/06, Roman Mandeleil [EMAIL PROTECTED] wrote:
  
  
   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 that page?
   
-Igor
   
   
On 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
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-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5870890
Sent from the Wicket - User forum at Nabble.com.
   
   
   
  
 -
Using Tomcat but need to do more? Need to support web services,
   security?
Get stuff done quickly with pre-integrated technology to make
 your
 job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
   
  
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
   
 https://lists.sourceforge.net/lists/listinfo/wicket-user
   
   
   
  
 -
Using Tomcat but need to do more? Need to support web services,
   security?
Get stuff done quickly with pre-integrated technology to make your
 job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
   Geronimo
   
  
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
   
 https://lists.sourceforge.net/lists/listinfo/wicket-user
   
   
  
   --
   View this message in context:
  
 http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5886620
   Sent from the Wicket - User forum at Nabble.com.
  
  
  
 -
   Using Tomcat but need to do more? Need to support web services,
 security?
   Get stuff done quickly with pre-integrated technology to make your
 job
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
   Geronimo
  
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
  
 https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
  
 -
   Using Tomcat but need to do more? Need to support web services,
 security?
   Get stuff done quickly with pre-integrated technology to make your
 job
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
  
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
  
 https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
 
  --
  View this message in context:
 http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5896557
  Sent from the Wicket - User forum at Nabble.com.
 
 
 
 -
  Using Tomcat but need to do more? Need to support web services,
 security?
  Get stuff done quickly with pre-integrated technology to make your job
 easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 
 

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:
ul
li wicket:id=listitemspan wicket:id=labelsome value/span/li
/ul

In the client side markup:
ul
lispanfoo/span/li
lispanbar/span/li
lispanfoobar/span/li
/ul

What you typically want to do is to redraw the complete ul/ul
part, because most browsers really don't appreciate when you replace
parts of a tag, especially when you are working with a table.

As you can see in this example, the ul tag is not a component, and
Wicket is not aware of it. Even if you were to do:
listview.setOutputMarkupId(true), this wouldn't work, as the listview
*itself* doesn't have a tag associated with it.

That is why you need to provide the webmarkupcontainer yourself as a
wrapper for the listview.

Martijn

On 8/21/06, Roman Mandeleil [EMAIL PROTECTED] wrote:

 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/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 [EMAIL PROTECTED] wrote:
  
   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 updating trs you
  end
  up
with duplicates - so it may just be a case of crappy outerhtml
  support
  in
the browser.
   
-Igor
   
   
On 8/19/06, Roman Mandeleil [EMAIL PROTECTED] wrote:
   
   
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 that page?

 -Igor


 On 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
 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-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5870890
 Sent from the Wicket - User forum at Nabble.com.



   
  -
 Using Tomcat but need to do more? Need to support web services,
security?
 Get stuff done quickly with pre-integrated technology to make
  your
  job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo

   
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net

  https://lists.sourceforge.net/lists/listinfo/wicket-user



   
  -
 Using Tomcat but need to do more? Need to support web services,
security?
 Get stuff done quickly with pre-integrated technology to make your
  job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo

   
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net

  https://lists.sourceforge.net/lists/listinfo/wicket-user


   
--
View this message in context:
   
  http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5886620
Sent from the Wicket - User forum at Nabble.com.
   
   
   
  -
Using Tomcat but need to do more? Need to support web services,
  security?
Get stuff done quickly with pre-integrated technology to make your
  job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
   
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
   
  https://lists.sourceforge.net/lists/listinfo/wicket-user
   
   
   
  

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 intuitive to put a ListViewinto some WebMarkupContainer just forAjax update, becauseListView itself is a WebMarkupContainer
Scott Swank wrote: 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 
[EMAIL PROTECTED] wrote:   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 updating trs you end up   with duplicates - so it may just be a case of crappy outerhtml
 support in   the browser. -Igor   On 8/19/06, Roman Mandeleil 
[EMAIL PROTECTED] wrote:   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 that page?   
-Igor  On 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 updatingcycleI got one element added to the list on the screen, any ideas ?
--View this message in context:  
http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5870890Sent from the Wicket - User forum at Nabble.com.   
 -Using Tomcat but need to do more? Need to support web services,
   security?Get stuff done quickly with pre-integrated technology to make your jobeasierDownload IBM WebSphere Application Server 
v.1.0.1 based on ApacheGeronimo  
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user-
Using Tomcat but need to do more? Need to support web services,   security?Get stuff done quickly with pre-integrated technology to make your
 jobeasierDownload IBM WebSphere Application Server v.1.0.1 based on Apache   Geronimo   
   http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user  
 --   View this message in context:   
http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5886620   Sent from the Wicket - User forum at Nabble.com.  
 -   Using Tomcat but need to do more? Need to support web services,
 security?   Get stuff done quickly with pre-integrated technology to make your job   easier   Download IBM WebSphere Application Server 
v.1.0.1 based on Apache   Geronimo   http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___   Wicket-user mailing list   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
   -   Using Tomcat but need to do more? Need to support web services, security?   Get stuff done quickly with pre-integrated technology to make your
 job   easier   Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo   
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642   ___   Wicket-user mailing list   
Wicket-user@lists.sourceforge.net   https://lists.sourceforge.net/lists/listinfo/wicket-user
   --  View this message in context: 
http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5896557  Sent from the Wicket - User forum at Nabble.com.  
  -  Using Tomcat but need to do more? Need to support web services, security?  Get stuff done quickly with pre-integrated technology to make your job
 easier  Download IBM WebSphere Application Server 

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 :)


 -Igor


 On 8/20/06, Roman Mandeleil [EMAIL PROTECTED] wrote:
 
  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/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

-- 
Download Wicket 1.2.1 now! - http://wicketframework.org

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 updating trs you end up
 with duplicates - so it may just be a case of crappy outerhtml support in
 the browser.
 
 -Igor
 
 
 On 8/19/06, Roman Mandeleil [EMAIL PROTECTED] wrote:


 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 that page?
 
  -Igor
 
 
  On 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
  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-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5870890
  Sent from the Wicket - User forum at Nabble.com.
 
 
 
 -
  Using Tomcat but need to do more? Need to support web services,
 security?
  Get stuff done quickly with pre-integrated technology to make your job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
  Geronimo
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 
 -
  Using Tomcat but need to do more? Need to support web services,
 security?
  Get stuff done quickly with pre-integrated technology to make your job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

 --
 View this message in context:
 http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5886620
 Sent from the Wicket - User forum at Nabble.com.


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 
 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

-- 
View this message in context: 
http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5896557
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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.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 updating trs you end up with duplicates - so it may just be a case of crappy outerhtml support in
 the browser. -Igor On 8/19/06, Roman Mandeleil [EMAIL PROTECTED] wrote: 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 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  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-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5870890
  Sent from the Wicket - User forum at Nabble.com.-
  Using Tomcat but need to do more? Need to support web services, security?  Get stuff done quickly with pre-integrated technology to make your job  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache  Geronimo  
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642  ___  Wicket-user mailing list  
Wicket-user@lists.sourceforge.net  https://lists.sourceforge.net/lists/listinfo/wicket-user
-  Using Tomcat but need to do more? Need to support web services,
 security?  Get stuff done quickly with pre-integrated technology to make your job  easier  Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___  Wicket-user mailing list  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user   -- View this message in context:
 http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5886620 Sent from the Wicket - User forum at 
Nabble.com. - Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo 
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642 ___ Wicket-user mailing list 
Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -
 Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server 
v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/wicket-user--View this message in context: http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5896557
Sent from the Wicket - User forum at Nabble.com.-Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net

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 [EMAIL PROTECTED] wrote:
 
  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 updating trs you end
 up
   with duplicates - so it may just be a case of crappy outerhtml support
 in
   the browser.
  
   -Igor
  
  
   On 8/19/06, Roman Mandeleil [EMAIL PROTECTED] wrote:
  
  
   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 that page?
   
-Igor
   
   
On 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
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-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5870890
Sent from the Wicket - User forum at Nabble.com.
   
   
   
  
 -
Using Tomcat but need to do more? Need to support web services,
   security?
Get stuff done quickly with pre-integrated technology to make your
 job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
   
  
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
   
 https://lists.sourceforge.net/lists/listinfo/wicket-user
   
   
   
  
 -
Using Tomcat but need to do more? Need to support web services,
   security?
Get stuff done quickly with pre-integrated technology to make your
 job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
   Geronimo
   
  
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
   
 https://lists.sourceforge.net/lists/listinfo/wicket-user
   
   
  
   --
   View this message in context:
  
 http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5886620
   Sent from the Wicket - User forum at Nabble.com.
  
  
  
 -
   Using Tomcat but need to do more? Need to support web services,
 security?
   Get stuff done quickly with pre-integrated technology to make your job
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
   Geronimo
  
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
  
 https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
  
 -
   Using Tomcat but need to do more? Need to support web services,
 security?
   Get stuff done quickly with pre-integrated technology to make your job
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
  
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
  
 https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
 
  --
  View this message in context:
 http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5896557
  Sent from the Wicket - User forum at Nabble.com.
 
 
 
 -
  Using Tomcat but need to do more? Need to support web services, security?
  Get stuff done quickly with pre-integrated technology to make your job
 easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 


 

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 that page?
 
 -Igor
 
 
 On 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
 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-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5870890
 Sent from the Wicket - User forum at Nabble.com.


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 
 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

-- 
View this message in context: 
http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5886620
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 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 modelshould be full synchronizedwith the html on the screen, but maybe the idea is something else ?
igor.vaynberg wrote: how about some code of that page? -Igor On 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 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-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5870890 Sent from the Wicket - User forum at Nabble.com. -
 Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server 
v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/wicket-user - Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo 
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642 ___ Wicket-user mailing list 
Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user--View this message in context: 
http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5886620Sent from the Wicket - User forum at 
Nabble.com.-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimohttp://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5870890
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 ideas ?--View this message in context: 
http://www.nabble.com/ListView-and-AjaxSelfUpdatingTimerBehavior-tf2127590.html#a5870890Sent from the Wicket - User forum at Nabble.com.-
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user