Re: [Wicket-user] Tree

2006-07-28 Thread Eelco Hillenius
Yep. Override getCss: protected PackageResourceReference getCss() { return new PackageResourceReference(FooTree.class, bar.css); } Also note that since a few days (will be in 1.2.2) there is a new tree component put in extensions for 1.2.x, and will

Re: [Wicket-user] AjaxSubmitLink and history

2006-07-28 Thread Igor Vaynberg
this happens because ajax requests turn off versioning, otherwise there would be all kinds of problems with page expiration - take selfupdating ajax stuff - 10 updates and all other pages are out of the pagemap so if you click the back button and a link on the prev page you get page expired error.

Re: [Wicket-user] AjaxSubmitLink and history

2006-07-28 Thread Alexei Sokolov
I'm 100% sure that the model is updated because I can see correct value on the next page. Input is validated too.Ok, so it is not happening in internet explorer, only in firefox (I tested only those two).Alex On 7/27/06, Eelco Hillenius [EMAIL PROTECTED] wrote: Keep in mind that those model

Re: [Wicket-user] Tree

2006-07-28 Thread David Leangen
You just need to override: protected PackageResourceReference getCss() { return CSS; } Cheers, Dave On Thu, 2006-07-27 at 11:22 +0200, Henk Laracker wrote: Hello, I use the wicket tree component, is it possible to disable the style sheet? Because we want to use our own. Thank

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-28 Thread Martijn Dashorst
Try it again. Probably you were too fast for the sync to ibiblio to happen. The wicket-parent-1.2.1.pom file is now available on ibiblio. http://repo1.maven.org/maven2/wicket/ From now on, the maven repository is sync'd frequently with our repository so (final) releases will become

Re: [Wicket-user] apache wicket?

2006-07-28 Thread V. Jenks
Wow, sounds like a fairly big step, eh? So, not being familiar w/ the Apache Way - what are the pros and cons vs. what you've been doing so far? On Wed, 2006-07-26 at 18:03 -0700, Igor Vaynberg wrote: dear community, the core wicket team has decided to join the ASF and make

Re: [Wicket-user] apache wicket?

2006-07-28 Thread Steven Mak
Hi,I have some queries on this:- What's the benefits of joining ASF then?- How to determine if Wicket is "ready" to graduate?- How do ASF decides who is joining them? They already have Struts, Tapestry, and some others related frameworks. Do they have any criteria to choose? or would they take it

Re: [Wicket-user] localization in wicket-extensions

2006-07-28 Thread Igor Vaynberg
patches are always welcome-IgorOn 7/26/06, Janos Cserep [EMAIL PROTECTED] wrote: I've noticed that some components in wicket-extensions are not internationalized properly (DataTable, Palette) in 1.2. Is somebody working on this or shall I go ahead and do it myself? Janos

Re: [Wicket-user] apache wicket?

2006-07-28 Thread Peter Neubauer
Wow, major cool! Think this is a very good move for Wicket, it belongs peer to Tapestry etc to say the least :) /peter On 7/27/06, Igor Vaynberg [EMAIL PROTECTED] wrote: dear community, the core wicket team has decided to join the ASF and make wicket a top level apache project

Re: [Wicket-user] localization in wicket-extensions

2006-07-28 Thread Johan Compagner
sent in a patch.On 7/26/06, Janos Cserep [EMAIL PROTECTED] wrote: I've noticed that some components in wicket-extensions are not internationalized properly (DataTable, Palette) in 1.2. Is somebody working on this or shall I go ahead and do it myself? Janos

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-28 Thread Eelco Hillenius
In your application's init method, call getDebugSettings.setSerializeSessionAttributes(false); Eelco On 7/26/06, Vincent Jenks [EMAIL PROTECTED] wrote: I just downloaded 1.2.1, how do I take advantage of this? I'm hoping I can use 1.2.1 on Glassfish w/o having to custom-build it like I did

Re: [Wicket-user] apache wicket?

2006-07-28 Thread Stefan Arentz
This is an excellent move. Apache is a great home for a great framework like Wicket! Congrats to all! S. On 7/27/06, Igor Vaynberg [EMAIL PROTECTED] wrote: dear community, the core wicket team has decided to join the ASF and make wicket a top level apache project (wicket.apache.org)

Re: [Wicket-user] AjaxSubmitLink and history

2006-07-28 Thread Johan Compagner
ajax calls dont alter the history. This can be programmed by doing it in _javascript_I think Matej knows more about that.johanOn 7/26/06, Alexei Sokolov [EMAIL PROTECTED] wrote: Hello,I have small problem with ajaxsubmitlink. I have a page with a form which can be submitted by either a regular

[Wicket-user] How can I use markup containers in head?

2006-07-28 Thread jan_bar
Hi, how can I handle this problem: head wicket:head meta wicket:id=description name=description content=[SEO page description] / /wicket:head /head public class Title extends Panel { public Title(String id) { super(id); WebMarkupContainer description = new

[Wicket-user] Discussing Wicket

2006-07-28 Thread Frank Silbermann
It seems to me that most descriptions of Wicket that I've seen on the web focus on two properties: the absence of configuration files and the radical separation of HTML from Java code. (Then readers debate whether the absence of configuration files limit flexibility and whether the use of

Re: [Wicket-user] AjaxSubmitLink and history

2006-07-28 Thread Johan Compagner
Maybe firefox really doesn't record those ajas changes to a page somehow.And it really goes back in the cache with the intial data that the url did had...johanOn 7/27/06, Alexei Sokolov [EMAIL PROTECTED] wrote: I'm 100% sure that the model is updated because I can see correct value on the next

[Wicket-user] Tree

2006-07-28 Thread Henk Laracker
Title: Tree Hello, I use the wicket tree component, is it possible to disable the style sheet? Because we want to use our own. Thank you, Henk Laracker Lead Architect Development Planon B.V. Wijchenseweg 8 6537 TL Nijmegen P.O. Box 38074 6503 AB Nijmegen

[Wicket-user] Problem handling Double values

2006-07-28 Thread Md. Kamruzzaman
Hi, I'm having great problem with handling Double values in the text box. When I am entering a double value in a text box with more than 3 precisions like 1.99 or 1., it is being saved in the database accurately, but the post back value showing in the text box is rounded to next Integer