[Wicket-user] generate a error in ajajx render for wicket 2.0 snap.

2007-01-01 Thread GhostDog
hi, i write some thing to add a row into a list view by press button. and there is one textfield with datepicker in the row. every thing is ok when I don't use ajax submit button; it' generate the below error when i use the ajax way. when i removed the datepicker it's ok. is anyone can give

Re: [Wicket-user] CheckGroupSelector with CheckBox

2007-01-01 Thread TH Lim
Thanks. I replaced checkgroupselector with checkbox like what you have described and had it working. However, I find it strange not to extend checkgroupselector to cover server side. Can you share with me what is the reason for the team not to cover that? Or is it irrelevant to do so?

[Wicket-user] 1.2.4: Test cannot find file

2007-01-01 Thread Iman Rahmatizadeh
The FileUploadFieldTest try's to upload a non-existent file ( wicket-xhtml1-strict.dtd ) Where should this file be ? I'm testing using ant jar task. Iman - Take Surveys. Earn Cash. Influence the Future of IT Join

[Wicket-user] reserve

2007-01-01 Thread Cervantes Dolly
Objects in mirrior are closer than they appear. There are also some great comments to the original post requesting reader feedback. When you plant a church, don't stay on as a pastor; your best gift to the church is to move on. In the end, only you can decide what time is right for you to do

Re: [Wicket-user] generate a error in ajajx render for wicket 2.0 snap.

2007-01-01 Thread Igor Vaynberg
can we see the code please -igor On 1/1/07, GhostDog [EMAIL PROTECTED] wrote: hi, i write some thing to add a row into a list view by press button. and there is one textfield with datepicker in the row. every thing is ok when I don't use ajax submit button; it' generate the below error

[Wicket-user] 100,000th download at januari 1st, 2007, 1:00pm UTC

2007-01-01 Thread Martijn Dashorst
We barely missed it in 2006, but we have reached the 100,000th download of a Wicket package from the SourceForge.net servers (this does not include downloads done through maven). I was waiting to do the 100,000th download myself, but someone else took it :-) Statistics: yeardownloads

Re: [Wicket-user] CheckGroupSelector with CheckBox

2007-01-01 Thread TH Lim
Understood. Is there an easy way for checkboxselector to select the users from the paged list on the visible page and update the checkgroup with all these visible users on the server side? igor.vaynberg wrote: well, the purpose of the checkboxselector is to be a client side widget to

[Wicket-user] Possibility of creating a dynamic picture through Wicket ?

2007-01-01 Thread ZedroS Schwart
Hi all I'm looking forward creating a quite complex picture with different layouts and possibly some kind of auto update. At the end, it should look like a picture with part of it covered with shadow. I'm wondering whether Wicket ability to paint directly picture would be of any help is this

Re: [Wicket-user] CheckGroupSelector with CheckBox

2007-01-01 Thread Igor Vaynberg
not right now no. add an rfe and we might take that usecase into consideration -igor On 1/1/07, TH Lim [EMAIL PROTECTED] wrote: Understood. Is there an easy way for checkboxselector to select the users from the paged list on the visible page and update the checkgroup with all these visible

Re: [Wicket-user] Possibility of creating a dynamic picture through Wicket ?

2007-01-01 Thread Jonathan Locke
http://www.wicket-library.com/wicket-examples/images ZedroS Schwart wrote: Hi all I'm looking forward creating a quite complex picture with different layouts and possibly some kind of auto update. At the end, it should look like a picture with part of it covered with shadow. I'm

Re: [Wicket-user] Possibility of creating a dynamic picture through Wicket ?

2007-01-01 Thread Jonathan Locke
in particular: // Dynamically created image. Will re-render whenever resource is asked // for. add(new Image(image3, new RenderedDynamicImageResource(100, 100) { protected boolean render(Graphics2D

Re: [Wicket-user] Possibility of creating a dynamic picture through Wicket ?

2007-01-01 Thread ZedroS Schwart
Thanks for the answers. I still don't manage to access the wicket library but I'll try from somewhere else tomorrow. :) Do you have any feedback in terms of time of generation and server side cost (CPU, memory) ? Is it possible, for example, to generate a picture per user connected ? Thanks in

Re: [Wicket-user] Possibility of creating a dynamic picture through Wicket ?

2007-01-01 Thread Johan Compagner
just run the examples yourself then. johan On 1/1/07, ZedroS Schwart [EMAIL PROTECTED] wrote: Thanks for the answers. I still don't manage to access the wicket library but I'll try from somewhere else tomorrow. :) Do you have any feedback in terms of time of generation and server side cost

[Wicket-user] What is the meaning of versioned?

2007-01-01 Thread Carfield Yim
From the javadoc of setVersioned: Parameters: isVersioned - True to turn on versioning for this component, false to turn it off for this component and any children. But what is the meaning of versioned? What is the result if I turn it on or off?