Re: [Wicket-user] Redirecting top frame

2007-07-26 Thread Erik van Oosten
Igor wrote: write your own page, that works like redirect page, but instead of doing meta refresh output scriptwindow.top.location='url' What he meant: write your own page, that works like redirect page, but instead of doing meta refresh=... etc output

Re: [Wicket-user] .properties encoding

2007-07-19 Thread Erik van Oosten
Or you escape everything as unicode characters (e.g. /u00ef, see http://java.sun.com/docs/books/jls/third_edition/html/lexical.html#3.3), or you use the xml syntax supported by Java 6 (sorry no idea how that works in Wicket). Regards, Erik. Matej Knopp-2 wrote: You can't. Java property

Re: [Wicket-user] TabbedPanel tabs instanciation

2007-07-12 Thread Erik van Oosten
Xavier, Just an idea, I am not sure this would work: do not use the first tab, and switch to the second tab (index 1) if you do not have the parameter. Regards, Erik. Xavier Hanin wrote: When debugging my application which uses a TabbedPanel, I realized that one tab was unnecessarily

Re: [Wicket-user] Using a component more than once on a wicket page

2007-07-11 Thread Erik van Oosten
need to resort to RepeatingView, ListView and its descendants. Is there a way to turn off reporting of this as an error? Is it really an error to bind to a component more than once in a markup unit? Yes it is an error to bind a component *instance* more than once. Martijn -- Erik van

Re: [Wicket-user] Wicket Acegi ?

2007-05-31 Thread Erik van Oosten
more as I can only work on it for at most an hour per day :( I'll post again when I am done :) Regards, Erik. -- Erik van Oosten http://2007.rubyenrails.nl/ http://day-to-day-stuff.blogspot.com/ -- View this message in context: http://www.nabble.com/Wicket---Acegi---tf3833443.html

Re: [Wicket-user] Autocomplete - selecting (higlighting) firstoption by default.

2007-05-29 Thread Erik van Oosten
Yes please! other things that would be great: -1- immediate open of the dropdown window upon entering the field -2- control over the width of the dropdown window I implemented -1- by adding a special class to the field 'immediateOpen' and adapting the javascript (code available for download at

Re: [Wicket-user] Wicket Acegi ?

2007-05-29 Thread Erik van Oosten
believe i have heard of people using them together. Optionally if you are using java 1.5 you could check out the wicket-auth-roles project. -- Erik van Oosten http://2007.rubyenrails.nl/ http://www.day-to-day-stuff.blogspot.com/ -- View this message in context: http://www.nabble.com/Wicket

Re: [Wicket-user] Wicket Acegi ?

2007-05-29 Thread Erik van Oosten
to handle both authentication and authorization and is perfectly capable of delegating to whatever authentication framework you desire. Maurice -- Erik van Oosten http://2007.rubyenrails.nl/ http://www.day-to-day-stuff.blogspot.com/ -- View this message in context: http://www.nabble.com/Wicket

Re: [Wicket-user] integrating wicket and cocoon

2007-05-28 Thread Erik van Oosten
in wicket side of problem is. It is necessary getLocale? Can i inibite this call in wicket configuration? Luca -- Erik van Oosten http://2007.rubyenrails.nl/ http://day-to-day-stuff.blogspot.com/ -- View this message in context: http://www.nabble.com/integrating-wicket-and-cocoon

Re: [Wicket-user] wicket vs. struts presentation

2007-05-22 Thread Erik van Oosten
Hi Florian, 1- I am surprised you want to compare against Struts. Almost any modern web framework will kick ass compared to Struts. 2- I know only of one. It is the first article on this page on the wiki: http://cwiki.apache.org/WICKET/articles-about-wicket.html. It has a very nice comparison

Re: [Wicket-user] Accessing Template Value of a Label

2007-05-22 Thread Erik van Oosten
You can change the template to: DefaultValue label wicket:id=marked*/label In the java code you do something like: add(new WebMarkupContainer(marked).setVisible(condition)); Regards, Erik. severian wrote: I'm not sure that what I describe here is possible, but if it is, I'd be

Re: [Wicket-user] Accessing Template Value of a Label

2007-05-22 Thread Erik van Oosten
Well, actually, I like that solution. Erik. severian wrote: OK Erik, it seems like the following works: class MyContainer extends WebMarkupContainer { public MyContainer(String id) { super(id); } @Override protected void

Re: [Wicket-user] AjaxPagingNavigator doesn't work as custom class

2007-05-15 Thread Erik van Oosten
the same code, but one works, the other does not. There has to be something I'm missing. -- Erik van Oosten http://2007.rubyenrails.nl/ http://day-to-day-stuff.blogspot.com/ -- View this message in context: http://www.nabble.com/AjaxPagingNavigator-doesn%27t-work-as-%22custom%22-class-tf3760248

Re: [Wicket-user] AutoCompleteTextField

2007-05-15 Thread Erik van Oosten
for the help. Sorry if these are very easy questions but I'm still new to wicket and trying to figure it out from reading example codes. -- Marc -- Erik van Oosten http://2007.rubyenrails.nl/ http://day-to-day-stuff.blogspot.com/ -- View this message in context: http://www.nabble.com

Re: [Wicket-user] weird url behaviour for bookmarkable pages

2007-05-14 Thread Erik van Oosten
page will be moved to the new pagemap (wicket-1%3A) this can be disabled (and is already disabled in 1.3 by default when using the SecondLevelCache) johan -- Erik van Oosten http://2007.rubyenrails.nl/ http://day-to-day-stuff.blogspot.com/ -- View this message in context: http

Re: [Wicket-user] weird url behaviour for bookmarkable pages

2007-05-14 Thread Erik van Oosten
igor.vaynberg wrote: hope this explains it. -igor With the addition that A' is a clone of A, it does. Thanks Igor. -- View this message in context: http://www.nabble.com/weird-url-behaviour-for-bookmarkable-pages-tf3752813.html#a10609207 Sent from the Wicket - User mailing list

Re: [Wicket-user] POST form submissions being converted to GETs

2007-05-11 Thread Erik van Oosten
)? Thanks, Lowell -- Erik van Oosten http://2007.rubyenrails.nl/ http://www.day-to-day-stuff.blogspot.com/ -- View this message in context: http://www.nabble.com/POST-form-submissions-being-converted-to-GETs-tf3725515.html#a10426535 Sent from the Wicket - User mailing list archive

Re: [Wicket-user] programmatic access to a wicket site

2007-05-10 Thread Erik van Oosten
servlet (or a servlet from any other web-framework) in the same web-application. Regards, Erik. Lowell Kirsh wrote: I think they will be using a java.net.HttpURLConnection. Does it matter? -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [Wicket-user] programmatic access to a wicket site

2007-05-10 Thread Erik van Oosten
(plain old servlet ;-) did cross my mind, but I was hoping to make my web page serve both purposes so that I could minimize the amount of coding I would have to do. Hopefully I can actually use the AbortWithWebErrorCodeException to serve this purpose. -- Erik van Oosten http://2007

Re: [Wicket-user] Wicket-stuff GMAP

2007-05-05 Thread Erik van Oosten
data. Click to get it now. http://sourceforge.net/powerbar/db2/ ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: [Wicket-user] Good Tutorial on core wicket

2007-05-05 Thread Erik van Oosten
on the sort of thing that I _think_ you're asking for. http://cwiki.apache.org/WICKET/lifecycle-of-a-wicket-application.html Scott -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - This SF.net email

Re: [Wicket-user] Wicket BoF @ Apache Con: thursday May 3rd, 8pm

2007-05-02 Thread Erik van Oosten
Martijn, Was a place selected as well? Or is it simply somewhere at some square at the conference? Erik. Martijn Dashorst wrote: We picked a time and day: May 3rd, 8pm. Be there or be square (obligatory '80s quote). Martijn

[Wicket-user] Wanted: Wicket presentation

2007-04-27 Thread Erik van Oosten
Hello, I have been asked to give an introduction presentation on Wicket for my colleagues. Is there any presentation out there that I may re-use? Regards, Erik. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [Wicket-user] Wanted: Wicket presentation

2007-04-27 Thread Erik van Oosten
Bedankt Martijn! Erik. - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now.

Re: [Wicket-user] Wanted: Wicket presentation

2007-04-27 Thread Erik van Oosten
Yes, no problem. I have been keeping the 'articles' page up to date for a couple of months already :) Erik. On 4/27/07, Erik van Oosten [EMAIL PROTECTED] wrote: Bedankt Martijn! Can you add the discovered presentations to a wiki page please? Martijn

Re: [Wicket-user] Replace non-wicket attributed sections of a html document

2007-04-24 Thread Erik van Oosten
-- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click

Re: [Wicket-user] Replace non-wicket attributed sections of a html document

2007-04-24 Thread Erik van Oosten
want to be able to do effectivley some global replaces on the generated html markup to replace some markers with actual values. Hope that makes it a little clearer. Cheers Andrew Erik van Oosten wrote: Hi Andrew, Your use-case is exactly what Wicket is about. In the template file

Re: [Wicket-user] form.setVisible(false) possible through an AjaxSubmitButton onSubmit ?

2007-04-23 Thread Erik van Oosten
! ZedroS -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data

Re: [Wicket-user] form.setVisible(false) possible through an AjaxSubmitButton onSubmit ?

2007-04-23 Thread Erik van Oosten
://www.developpez.com/ ? For sure I would put a link to your blog ! :) ZedroS -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version

Re: [Wicket-user] What is Component Versioning (isVersioned())

2007-04-20 Thread Erik van Oosten
replacement is used (and less importantly, when setModel is used) -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version

Re: [Wicket-user] Wicket 1.3 ready for development?

2007-03-31 Thread Erik van Oosten
Thanks Eelco, Frank, 1.3 it will be. Regards, Erik. -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get

Re: [Wicket-user] complex user case

2007-03-31 Thread Erik van Oosten
case? Or should I look at stuff like GWT or Swing? Thanks Richard -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay

Re: [Wicket-user] localized resource property file - fallback to default?

2007-03-30 Thread Erik van Oosten
language until someone gets around to translating it. Does Wicket have this easily configurable, or do I need to roll my own resource resolvers or other classes for this purpose? -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: [Wicket-user] Hibernate/Spring and Wicket architecture request for validation (was Wicket's questions)

2007-03-17 Thread Erik van Oosten
by Wicket after each request. -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your

Re: [Wicket-user] Apache Con Amsterdam: wicket presence

2007-03-14 Thread Erik van Oosten
in for this last proposal ;-). -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - 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

Re: [Wicket-user] Spring design in Wicket

2007-03-09 Thread Erik van Oosten
XML and don't mind dabbling with experimental code then you could take a look at http://www.springframework.org/javaconfig which aims to configure spring in java code. regards, roland -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [Wicket-user] Spring design in Wicket

2007-03-09 Thread Erik van Oosten
'). Regards, Erik. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - 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

Re: [Wicket-user] Getting value of a text field via Ajax, no form

2007-03-08 Thread Erik van Oosten
: Speaking of, is AjaxFormSubmitBehavior broken in the current 1.x snapshot, or is it just me? Nathan Igor Vaynberg wrote: see AjaxFormComponentUpdatingBehavior AjaxEventBehavior doesnt send over the value of the form component, just triggers a roundtrip -- Erik van Oosten http

Re: [Wicket-user] Spring design in Wicket

2007-03-08 Thread Erik van Oosten
://lists.sourceforge.net/lists/listinfo/wicket-user -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share

Re: [Wicket-user] IMPORTANT: your opinion on the constructor change in 2.0

2007-03-07 Thread Erik van Oosten
___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence

Re: [Wicket-user] Redirecting to another internal page

2007-03-02 Thread Erik van Oosten
the error. However, everything I tried reports an error that I did not finish mapping the first page. Is this possible with Wicket? Any other ideas of how to approach this problem? Thanks, David Robison -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [Wicket-user] Nicer URLs

2007-02-28 Thread Erik van Oosten
If you want more power, you can use MixedParamUrlCodingStrategy from Wicket 1.3/2.0. If you are on the 1.2 branch you can pull it from http://issues.apache.org/jira/browse/WICKET-138. Regards, Erik. igor.vaynberg wrote: http://wicketstuff.org/wicket13/niceurl/ -igor -- Erik van

Re: [Wicket-user] Unknown Runtime Exception in Ajax?

2007-02-26 Thread Erik van Oosten
Lets add some more risk: Ryan Holmes wrote: 2) Double check that any component added to your AjaxRequestTarget has a markup id. You do this by calling setOutputMarkupId(true) on the component immediately after construction. Erik. -- Erik van Oosten http://www.day-to-day

Re: [Wicket-user] Pure JavaScript calls from Links

2007-02-23 Thread Erik van Oosten
seems to make Wicket hit the website. From within my Page class, I want to create the JavaScript, and have just that JavaScript execute, and nothing else to happen at all. Can anyone tell me how to set up my Link not to do this? Thanks in advance! Will -- Erik van Oosten http

Re: [Wicket-user] Pure JavaScript calls from Links

2007-02-23 Thread Erik van Oosten
Sorry, it is more something like WebMarkupContainer, not WebMarkupComponent. Erik. Erik van Oosten wrote: Attach a simple WebMarkupComponent to your a. Then add a SimpleAttributeBehavior(onclick, foo();) to the component. Regards, Erik. Will Morton wrote: I am having some

Re: [Wicket-user] VOTE on wicket:component

2007-02-14 Thread Erik van Oosten
should only have nice clean markup. VOTE: [ ] Delete this unimportant and generally unsupported feature [ ] Keep wicket:component, but define its limits, document it on the wiki as fully supported and commit to supporting it in the future -- Erik van Oosten http://day-to-day

Re: [Wicket-user] Who is using Wicket under production environment?

2007-02-12 Thread Erik van Oosten
That page is not editable. How can I add another Wicket app? Erik. Matthes R. wrote: check this out: http://cwiki.apache.org/WICKET/#Index-SitesusingWicket greets, Matthes -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: [Wicket-user] Who is using Wicket under production environment?

2007-02-12 Thread Erik van Oosten
Thanks. I added my app. Erik. Igor Vaynberg wrote: not sure why it was locked...i unlocked. -igor -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - Using Tomcat but need to do more? Need to support web

Re: [Wicket-user] Test Frameworks and Wicket

2007-02-10 Thread Erik van Oosten
. Regards, Erik. nilo de roock wrote: I had a brief look at the WicketTester example. It's not something I would like to use for writing a functional regressing test. -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Erik van Oosten
He is talking about his beer drinking, I think... Erik. Scott Swank wrote: You know, JSF is sounding better better On 2/8/07, *Eelco Hillenius* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: On 2/8/07, Eelco Hillenius [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

[Wicket-user] Problem with javascript initialization order and header contributions

2007-02-05 Thread Erik van Oosten
van Oosten http://www.day-to-day-stuff.blogspot.com/ - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier. Download IBM

Re: [Wicket-user] Wicket Ajax - t has no properties

2007-02-05 Thread Erik van Oosten
couldn't find this issue on Jira, maybe it's resolved in 1.3, i haven't checked thought. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Using Tomcat but need to do more? Need to support web services

Re: [Wicket-user] Problem with javascript initialization order and header contributions

2007-02-05 Thread Erik van Oosten
Oh, and euh, I am using a Wicket pre-1.2.5 snapshot from 2007-01-23. Erik van Oosten wrote: Hi, I have some javascript with initialization code that needs functions from wicket-ajax.js. However, my javascript is loaded (and run) before wicket-ajax.js. The javascript is added

Re: [Wicket-user] Problem with javascript initialization order and header contributions

2007-02-05 Thread Erik van Oosten
like I am not using prototype. I 'fixed' it with by hacking the onload attribute on one of my templates. Thanks Al, Erik. -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - Using Tomcat but need to do

Re: [Wicket-user] ApacheCon Europe 2007

2007-02-04 Thread Erik van Oosten
Ballpark: EUR 850. Erik. nilo de roock wrote: My office tried to register me, but the site is still closed. You haven't registered yet either? Any idea of the entrance fee (for the entire week)? Ballpark is fine. - nilo -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: [Wicket-user] How to include a form field in the ajax request without form submit

2007-01-31 Thread Erik van Oosten
this behavior. Best regards, Conny -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get

Re: [Wicket-user] Groovy integration? Scripting languages

2007-01-26 Thread Erik van Oosten
Groovy ( or any other scripting language ) with Wicket but I just read... -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay

Re: [Wicket-user] Page Expired

2007-01-26 Thread Erik van Oosten
, Sajeev -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - 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

Re: [Wicket-user] spring integration question

2007-01-23 Thread Erik van Oosten
Johan Compagner wrote: So i guess Windows Rules.. others just suck! :) To rule and to suck can go hand in hand as well :) - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and

Re: [Wicket-user] SURVEY: Are you using Page.before/afterCallComponent

2007-01-23 Thread Erik van Oosten
Not using it (and I have also never seen it before). Erik. igor.vaynberg wrote: are you using Page.before/afterCallComponent? and if so what is the usecase? -igor -- View this message in context:

Re: [Wicket-user] VOTE: IModel and 'model object' name change

2007-01-23 Thread Erik van Oosten
With those names I am changing my vote to +1. Erik. Jonathan Locke wrote: what do you think of gustav and eelco's IModelLocator / get/setModel idea? -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: [Wicket-user] update propertyModel value to null

2007-01-23 Thread Erik van Oosten
-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's

Re: [Wicket-user] form validation

2007-01-22 Thread Erik van Oosten
and in order to validate one component, i need the input of several other components. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join

Re: [Wicket-user] Setting html-tags properties

2007-01-19 Thread Erik van Oosten
sure you have WicketMessageTagHandler added to markupparser. -igor -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel

Re: [Wicket-user] ApacheCon Europe 2007

2007-01-17 Thread Erik van Oosten
was used and where we can improve things. Martijn -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get

Re: [Wicket-user] Multiple sessions from one client

2007-01-17 Thread Erik van Oosten
Fahrenkrug wrote: Is it possible to have multiple sessions from the same client? -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's

Re: [Wicket-user] skandinavian characters encoding lost...

2007-01-16 Thread Erik van Oosten
Thanks Jürgen, thats the one. I added a link to the Wicket wiki. Erik. Juergen Donnerstag wrote: http://cwiki.apache.org/WW/how-to-support-utf-8-uriencoding-with-tomcat.html Juergen -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [Wicket-user] Making disappear a section

2007-01-16 Thread Erik van Oosten
) { normalView.setVisible(false); hideDetails.setVisible(true); detailedView.setVisible(true); setVisible(false); t.addComponent(MyPanel.this); }}); The rest is left as an exercise to the reader. Martijn -- Erik van Oosten http://day-to-day

Re: [Wicket-user] Making disappear a section

2007-01-16 Thread Erik van Oosten
not seem to be the case. So either of the Martijn and Igor solutions are appropriate. Erik. Marc-Andre Houle wrote: Every one of you seem's to have a different answer, but I'm not sure which one is the best... -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: [Wicket-user] When the connetction must be opened and when it have to closed?

2007-01-16 Thread Erik van Oosten
processed. Can you help me with code. Thanks for now. -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance

Re: [Wicket-user] ComponentModel

2007-01-15 Thread Erik van Oosten
Hi Nino, You should never use div/ but always div/div. Regards, Erik. Nino Wael wrote: Hmm this does not difference, still not working.. Heres the markup before processing: -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [Wicket-user] skandinavian characters encoding lost...

2007-01-15 Thread Erik van Oosten
___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [Wicket-user] Input Field background color change on validation

2007-01-15 Thread Erik van Oosten
do I change the value returned by the isValid() method? Could you give me a hint, how to check for Cliff e.g.? -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence

[Wicket-user] Adding multiple behaviors fails

2007-01-15 Thread Erik van Oosten
. Regards, Erik. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - 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

Re: [Wicket-user] Adding multiple behaviors fails

2007-01-15 Thread Erik van Oosten
see 2 behavior attached to the same event only generate for one but also call the other.. johan -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join

Re: [Wicket-user] skandinavian characters encoding lost...

2007-01-15 Thread Erik van Oosten
on the Wicket Wiki, that would be great. Cheers, Erik. Nino Wael schreef: Yes i am using tomcat.. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Erik van Oosten Sent: 15. januar 2007 13:17 To: wicket-user@lists.sourceforge.net Subject: Re

Re: [Wicket-user] skandinavian characters encoding lost...

2007-01-15 Thread Erik van Oosten
-encoding.html found through: http://woogle.billen.dk/search/q/tomcat%20encoding Martijn On 1/15/07, Erik van Oosten [EMAIL PROTECTED] wrote: Well according to Johan its only for POSTs that Tomcat can be a problem. I just tried for at least 10 minutes to find a reference to the exact thing

Re: [Wicket-user] numbervalidator 'java.lang.ClassCastException'

2007-01-15 Thread Erik van Oosten
-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future

Re: [Wicket-user] Adding multiple behaviors fails

2007-01-15 Thread Erik van Oosten
combine that with a convenience class a la AppendingBehavior, it would make things easier than in the current situation. But that's about how far we should go imho. Eelco -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: [Wicket-user] Input Field background color change on validation

2007-01-14 Thread Erik van Oosten
(document.getElementById(' + uname.getMarkupId() + ').focus();); } target.addComponent(uname); } }); Should do the trick. Note that this is from the top of my head, so things might not compile completely. Martijn -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [Wicket-user] Setting attributes on a list view

2007-01-11 Thread Erik van Oosten
examples?) in the WIKI somewhere? Eelco -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance

Re: [Wicket-user] how to create a link without markup id?

2007-01-10 Thread Erik van Oosten
of downloadlink to do this ? it's too verbose. or it's another question, could I decide bind the compoent into the id by condition? -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash

[Wicket-user] Problems making a form reset button

2007-01-09 Thread Erik van Oosten
not visible *} }; // Perform only the onSubmit, no validation resetButton.setDefaultFormProcessing(false); form.add(resetButton); -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [Wicket-user] Problems making a form reset button

2007-01-09 Thread Erik van Oosten
(); return Component.IVisitor.CONTINUE _TRAVERSAL_BUT_DONT_GO_DEEPER; } }); On 1/9/07, *Erik van Oosten* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi, I am trying the make a reset button (clears all fields

Re: [Wicket-user] Problems making a form reset button

2007-01-09 Thread Erik van Oosten
(resetButton); Erik van Oosten wrote: Yes, correct. The model should be cleared as well. And it indeed uses setDefaultFormProcessing(false). The approach your describing below will throw exceptions for checkboxes: WicketMessage: unable to set object null, model: Model:classname

Re: [Wicket-user] Problems making a form reset button

2007-01-09 Thread Erik van Oosten
, *Erik van Oosten * [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Johan, I got it working as below. Shall I create a Jira issue for this? I think it would be more logical if checkbox could deal with cleared input. Erik. // The reset button

Re: [Wicket-user] Problems making a form reset button

2007-01-09 Thread Erik van Oosten
? johan On 1/9/07, Erik van Oosten [EMAIL PROTECTED] wrote: Johan, I got it working as below. Shall I create a Jira issue for this? I think it would be more logical if checkbox could deal with cleared input. Erik. // The reset button Button resetButton = new

Re: [Wicket-user] Problems making a form reset button

2007-01-09 Thread Erik van Oosten
object then null/empty string is valid. Maybe for booleans we can make an exception that null will be false in the converter What do others think? johan -- Erik van Oosten http://day-to-day-stuff.blogspot.com

[Wicket-user] Any more wicket articles?

2007-01-09 Thread Erik van Oosten
Hello, I just updated the wiki page http://cwiki.apache.org/confluence/display/WICKET/Articles+about+Wicket but there must surely be more articles on Wicket out there?! Please add them when you find one! Have fun, Erik. -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: [Wicket-user] Current Wicket-Examples 2.0 and slf4j

2007-01-02 Thread Erik van Oosten
Ah, its for examples. Too ill to notice. Yes, I agree there. Erik. Johan Compagner schreef: but that is stupid for examples We should provide a default impl for our examles Examples should run out of the box. johan On 1/2/07, *Erik van Oosten * [EMAIL PROTECTED] mailto:[EMAIL

Re: [Wicket-user] wicket-2.0 snapshots

2006-12-30 Thread Erik van Oosten
schreef: Does anyone know who runs the http://maven.sateh.com/wicket/ site? -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel

[Wicket-user] Wicket 1.2.4 and commons-codec (Re: Look under the tree: Santa left a present for all)

2006-12-27 Thread Erik van Oosten
to 1.2_Java1.3. But that should not matter as easymock is a 'provided' dependency. Regards, Erik. Martijn Dashorst wrote: As a thank you for your support in 2006, Santa has put Wicket 1.2.4 under the tree! -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [Wicket-user] Wicket 1.2.4 and commons-codec (Re: Look under the tree: Santa left a present for all)

2006-12-27 Thread Erik van Oosten
, Erik van Oosten [EMAIL PROTECTED] wrote: Thanks Martijn! Does anyone know why maven2 suddenly also gets commons-codec 1.3 when I switch from 1.2-snapshot (quite recent) to 1.2.4? I am using wicket, wicket-extentions and wicket-spring. The only difference I can find in the pom files

Re: [Wicket-user] Wicket 1.2.4 and commons-codec (Re: Look under the tree: Santa left a present for all)

2006-12-27 Thread Erik van Oosten
though. To see what the final pom is, try: mvn help:effective-pom The easymock needed to be downgraded as it is a Java 5 version incompatible with wicket-spring (which is java 1.4). Martijn -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [Wicket-user] Constructing a list of links from java

2006-12-22 Thread Erik van Oosten
programatically. I'd like my template to have a ul to which I'd append several li elements containing links. What is this obvious thing I'm missing? -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [Wicket-user] Login to wicket-app from another site

2006-12-22 Thread Erik van Oosten
. In the constructor the page would authenticate the user and when done throw a RestartResponseException to render the home page. Regards, Erik. Konstantinos Lazouras wrote: Is there a better way to do this? -konstantinos -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [Wicket-user] multiple links in article

2006-12-22 Thread Erik van Oosten
___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [Wicket-user] ajax component caching

2006-12-18 Thread Erik van Oosten
the CSS after it change On 12/18/06, Matej Knopp [EMAIL PROTECTED] wrote: What's the reason of not caching css? -Matej -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash

Re: [Wicket-user] wicket-stuff svn issues

2006-12-18 Thread Erik van Oosten
Method Not Allowed (https://svn.sourceforge.net https://svn.sourceforge.net) -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay

Re: [Wicket-user] How can I do URL mapping in wicket?

2006-12-18 Thread Erik van Oosten
/wicket/app/signup then wicket forward me to http://192.168.1.79:8080/wicket/app/signup?wicket:bookmarkablePage=:com.xxx.base.Logon And just show the login page instead of registration page -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

  1   2   3   >