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 chang

Re: [Wicket-user] How change character encoding

2006-07-28 Thread JK
Hello again, Problem was with setResponsePage(ThankYou.class,parameter); and parameter (PageParameters) encoding. Code for setting default encoding (ok?): -- WebApplication protected void init() { getMarkupSettings().setDefaultMarkupEncoding("iso-8859-1"); } 2006/7/27, JK <[E

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. >

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 availabl

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 wi

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 a

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 (wicket.a

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 b

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

2006-07-28 Thread jan_bar
Hi, how can I handle this problem: public class Title extends Panel { public Title(String id) { super(id); WebMarkupContainer description = new WebMarkupContainer("description"); description.add(new AttributeModifier("content", true, new Model("me description")));

[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 p

Re: [Wicket-user] wicket.markup.html.tree.Tree is not suitable for very big tree

2006-07-28 Thread michal petras
That's great. Do you know when wiil it be ported to 1.2.1? It could really help me. -- View this message in context: http://www.nabble.com/wicket.markup.html.tree.Tree-is-not-suitable-for-very-big-tree-tf1978583.html#a5520367 Sent from the Wicket - User forum at Nabble.com. ---

[Wicket-user] ExternalLink with

2006-07-28 Thread Nili Adoram
Hi all, How can render an ExternalLink with an image AND a label? onComponentTagBody of ExternalLink overrides all markup apart from the label. So, if I have a link MyLabel the rendered output will be: RenderedLabel Thanks Nili

[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 Th

[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 (

[Wicket-user] How change character encoding

2006-07-28 Thread JK
Hi, How do you change character encoding from utf-8 to iso-8859-1? If I define -- protected void configureResponse() { super.configureResponse(); final WebResponse response = getWebRequestCycle().getWebResponse(); response.setHeader("Content-Type", "text/html; charset=iso-8859-1");

[Wicket-user] Tree

2006-07-28 Thread henk laracker
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 LarackerLead ArchitectDevelopmentPlanon B.V.Wijchenseweg 86537 TL NijmegenP.O . Box 380746503 AB NijmegenThe NetherlandsT: +31 (0) 24 641

Re: [Wicket-user] apache wicket?

2006-07-28 Thread Igor Vaynberg
On 7/27/06, Steven Mak <[EMAIL PROTECTED]> wrote: Hi,I have some queries on this:- What's the benefits of joining ASF then?the benefits that we see are outlined in the proposal - there is a link in my original email - How to determine if Wicket is "ready" to graduate? here is a quote from irc on th

[Wicket-user] IBATIS (and Spring)

2006-07-28 Thread Gwyn Evans
While there's nothing too Wicket-specific needed to use iBATIS with Wicket, I've nevertheless created a page on the Wiki that may be of interest if anyone's considering it's use. It also shows an example of Spring configuration and covers Oracle paging, but they're peripheral to the main point - S

Re: [Wicket-user] AjaxSubmitLink and history

2006-07-28 Thread Matej Knopp
Igor Vaynberg wrote: > 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 p

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

2006-07-28 Thread Eelco Hillenius
See http://www.nabble.com/New-pom-structure-tf1870006.html I think Martijn tweaked it a bit after that, but he'd better explain that himself :) Btw, Frank made a nice search service for Wicket messages etc: http://woogle.billen.dk . Might make it easier to find stuff like this. Eelco On 7/26/

[Wicket-user] How to check checkBoxes ?

2006-07-28 Thread Alban Duval
Hi all, I'd like to know how to programatically check the check boxes in CheckGroup ? Thanks, AD. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share