Johan Compagner
Thu, 01 Nov 2007 08:16:40 -0800
> > I was a little shocked by this answer, so my next question is a bit late.
but you did survive is see.... phhhh... is there a way to fill a panel from serverside? > i mean when i have data, which i get from an external WebService, is there > a > way to start filling a panel from serverside when the loading of the data > is > finished? > Something like an AjaxLink where the linktext changes after loading the > new > data to show > or a Label which can be change from serverside after the data is received > without the need to have a clientside submit or request? > > Every idea could take me further. What are you loading? some kind of model data? You could do that in the background with another thread? and just poll when it is finished Creating components is a bad idea in a not request thread. And request threads are always single threaded. johan