Re: [Wicket-user] Whats Wickets way of searching all resource files

2006-12-04 Thread Erik van Oosten
Interesting. Can you see what happens if the *_en.properties file is not there? Perhaps we need to change the text on the wiki, or else we should file an issue in Jira. Regards, Erik. Jesper Preuss schreef: I have a question about what Wicket should traverse properties files and what

Re: [Wicket-user] Palette add selected option

2006-12-04 Thread Nino Wael
I've placed the code here: Please notice that it makes use of css that are not used inline, I've provided our css in our file called jobindsats.css. Make sure the component the page where you use the component refers to that. As written earlier you should be able to use our recorder and just

Re: [Wicket-user] Strategy to avoid new instances of pages and panels

2006-12-04 Thread TH Lim
As we creating new instantes of WebPage, Form and other web widgets for every request received for different pages, it will cause more garbages created. Will this going to be affect the server performance? I'm new to Wicket and probably this has been discussed before. I will be grateful if

Re: [Wicket-user] Whats Wickets way of searching all resource files

2006-12-04 Thread Jesper Preuss
Now I have testet it again. The layout on the Page.html: Page Form id=formId wicket:message key=theform.messagedata[testdata]/wicket:message div wicket:id=theform.resourcedata / Checking order using: Using -- wicket:message

Re: [Wicket-user] Strategy to avoid new instances of pages and panels

2006-12-04 Thread Martijn Dashorst
Read this on the benefits of recent garbage collection strategies. http://www-128.ibm.com/developerworks/library/j-jtp01274.html Martijn On 12/4/06, TH Lim [EMAIL PROTECTED] wrote: As we creating new instantes of WebPage, Form and other web widgets for every request received for different

Re: [Wicket-user] Whats Wickets way of searching all resource files

2006-12-04 Thread Jesper Preuss
I have made a bug report http://issues.apache.org/jira/browse/WICKET-137 If any have an idea where to look to fix this, I would like to try. On 12/4/06, Erik van Oosten [EMAIL PROTECTED] wrote: Hi Jesper, I agree and also think this is not correct. You can create a JIRA issue here:

Re: [Wicket-user] Ajax : addcomponent strange problem

2006-12-04 Thread Vincent Renaville
Dear, My problem is still there , I have see in the Javascript console of Firefox : no element found. Do you know where does it comes. Vincent On Thu, 2006-11-30 at 17:47 +0100, Vincent Renaville wrote: Dear, I use Ajax to assign data to Textfield dynamically when a user select a value

Re: [Wicket-user] Wicket CMS

2006-12-04 Thread Ted Roeloffzen
Hi all, We've done the first commit of the code for the Wicket-cms named Kronos. If you want you can get it from the Wicket-stuff svn in the directory /branches/WICKET_1_2/wicket-kronos-cms The first time that the application is run it will take a while, because the repository has to be made.

[Wicket-user] Table in a form

2006-12-04 Thread Ted Roeloffzen
Hi all, Is it possible with Wicket to use a DataTable(repeater) in a form? In every row of the table, there will be at least 2 textfields and a checkbox. Is this possible and if so how do I do this? Ted - Take Surveys. Earn

Re: [Wicket-user] Table in a form

2006-12-04 Thread Nick Heudecker
Create panels for the form objects in the DataTable, adding them to the IColumn. You can create the DataTable, adding it to the form. On 12/4/06, Ted Roeloffzen [EMAIL PROTECTED] wrote: Hi all, Is it possible with Wicket to use a DataTable(repeater) in a form? In every row of the table,

Re: [Wicket-user] Table in a form

2006-12-04 Thread Ali Zaid
well, I do do this all the time, I use listview to go through each object in a list, and add a fragment to the item, of course the way I do it doesn't involve edit all the items, it's like edit a row in a table, so I chose the row (keep the object id in a session variable), redraw the table, if

[Wicket-user] Wicket and Package Resources

2006-12-04 Thread Ayodeji Aladejebi
In wicket Image why cant one simply bind to a Packaged Resource Like this: Image image = new Image(img,new Model(com/mypackage/Circle.gif)); assuming my Circle.gif is found in that package context Just why? there has to be a reason :) and please dont paste me this code: PackageResource IMG =

Re: [Wicket-user] Modifying form feedback behavior

2006-12-04 Thread Igor Vaynberg
if you want to validate the form via ajax you have to submit the form via ajax. see AjaxSubmitButton, then in onsubmit(AjaxRequestTarget target) you can start adding all kinds of javascript - like scriptaculous effects targetted at the proper form components -igor On 12/4/06, Levy, Jeremy

Re: [Wicket-user] Wicket and Package Resources

2006-12-04 Thread Igor Vaynberg
because it is not explicit do you want packaged resource com/mypackage/Circle.gif or do you want a static resource /mycontext/com/mypackage/Circle.gif? how is wicket to decide? -igor On 12/4/06, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: In wicket Image why cant one simply bind to a

Re: [Wicket-user] Wicket and Package Resources

2006-12-04 Thread Eelco Hillenius
Image image = new Image(img, new ResourceReference(HomePage.class, Circle.gif)); isn't so bad, is it? Eelco On 12/4/06, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: In wicket Image why cant one simply bind to a Packaged Resource Like this: Image image = new Image(img,new

Re: [Wicket-user] Wicket and Package Resources

2006-12-04 Thread Ayodeji Aladejebi
wicket should assume I am referring to the package resource. What raises this question is when CSS has to be reused across applications and all the CSS and Image resources needs to be shared in a JAR irrespective of the application context. meanwhile, PackageResourceReference has been deprecated

Re: [Wicket-user] Wicket and Package Resources

2006-12-04 Thread Eelco Hillenius
meanwhile, PackageResourceReference has been deprecated You can just use ResourceReference instead. Eelco - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance

Re: [Wicket-user] Modifying form feedback behavior

2006-12-04 Thread Levy, Jeremy
Igor, Thanks, that gets me almost there, in onError() how do I get the component that the error is being thrown against? form.add(new AjaxSubmitButton(ajax-submit-button, form) { ... protected void onError(AjaxRequestTarget target, Form form) { // repaint

[Wicket-user] Terracotta open source and tested with wicket-examples

2006-12-04 Thread Eelco Hillenius
Hi all, Sorry to spam you with this, but you might be interested in this announcement http://www.infoq.com/news/2006/12/terracotta-jvm-clustering. We successfully tested wicket-examples (with the help of some people from Terracotta), and it looks like Terracotta is very promising indeed -

Re: [Wicket-user] Terracotta open source and tested w ith wicket-examples

2006-12-04 Thread bednarz-hannover
Hi, I also have just tested terracotta with my springframework / wicket application. It works perfect. I think, that teracotta meets wicket needs for parallel and loadbalanced execution envoronement the way we are looking for. Maciej -Ursprüngliche Nachricht- Von:

Re: [Wicket-user] Modifying form feedback behavior

2006-12-04 Thread Levy, Jeremy
Igor, Thanks again actually ;), you already answered my question here: http://www.nabble.com/FeedbackPanel%2C-Form%2C-which-component-is-caousi ng-feedback--tf2427268.html#a6767963 I added this in my onError form.visitFormComponents(new FormComponent.IVisitor() {

[Wicket-user] hgoogle ghoogle bgoogle gboogle

2006-12-04 Thread EEO
49700 - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT business topics through brief surveys - and earn cash

Re: [Wicket-user] Modifying form feedback behavior

2006-12-04 Thread Igor Vaynberg
:) -igor On 12/4/06, Levy, Jeremy [EMAIL PROTECTED] wrote: Igor, Thanks again actually ;), you already answered my question here: http://www.nabble.com/FeedbackPanel%2C-Form%2C-which-component-is-caousing-feedback--tf2427268.html#a6767963 I added this in my onError

Re: [Wicket-user] Table in a form

2006-12-04 Thread Carfield Yim
Yes, I've asked similar question before, you can refer to this message to see how to create a custom IColumn object http://www.nabble.com/Re%3A-Question-about-DataTable-p7353431.html On 12/4/06, Nick Heudecker [EMAIL PROTECTED] wrote: Create panels for the form objects in the DataTable, adding

[Wicket-user] headlines Archive

2006-12-04 Thread Broadband
76908 - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT business topics through brief surveys - and earn cash

Re: [Wicket-user] Terracotta open source and tested with wicket-examples

2006-12-04 Thread Ingram Chen
I just test terracotta-session, but it report error: com.tc.exception.TCNonPortableObjectError: *** Attempt to share an instance of a non-portable class referenced by a portable class. This unshareable class is a