Re: simple Link

2009-03-29 Thread Khlystov Alexandr
Thanks Martin. According to http://cwiki.apache.org/WICKET/everything-about-wicket-internationalization.html wicket:message... is the feature of wicket 1.4rc1, but I'm using 1.3.5. Anyway if I'm wrong I'm interested in setting caption from Java :). Martin Makundi пишет: Is this what you

Re: simple Link

2009-03-29 Thread Khlystov Alexandr
I've googled a bit words wicket textlink and found only http://www.mail-archive.com/wicket-u...@lists.sourceforge.net/msg08875.html, with your Igor comments. But there is no answer to my question. Is there a way without span, in a tag to set a caption via Link ( or inheriters) ? Because

Re: simple Link

2009-03-29 Thread Anton Veretennikov
http://www.nabble.com/Link-text-td13585396.html On Sun, Mar 29, 2009 at 2:28 PM, Khlystov Alexandr allex.khlys...@gmail.com wrote: I've googled a bit words wicket textlink and found only http://www.mail-archive.com/wicket-u...@lists.sourceforge.net/msg08875.html, with your Igor comments.

Re: FeedbackPanel.isVisible override

2009-03-29 Thread Anton Veretennikov
anyMessage(); On Sun, Mar 29, 2009 at 1:56 PM, Luther Baker lutherba...@gmail.com wrote: I am using the built-in functionality of the FeedbackPanel and I'd like to tweak it just a bit. I have some default padding/margin setup for that div ... and so even empty, it takes up some space on my

Re: Equivalent of StackPanel for Wicket

2009-03-29 Thread HHB
The stack panel (or the suggested jQuery) is the navigation widget for the application which means it should be part of the markup of the top level parent class. Should this jQuery widget be wrapped as Wicket component? Leszek Gawron-2 wrote: HHB wrote: Hey, I want to employ something

Re: simple Link

2009-03-29 Thread Khlystov Alexandr
Thanks Anton and Igor, that is exactly what I need! Anton Veretennikov пишет: http://www.nabble.com/Link-text-td13585396.html On Sun, Mar 29, 2009 at 2:28 PM, Khlystov Alexandr allex.khlys...@gmail.com wrote: I've googled a bit words wicket textlink and found only

page parameters for home page

2009-03-29 Thread Vitek Tajzich
Hi, I want to get page parameters for home page. When I have page mounted to url etc: page1 and I enter url /page1/key/value then I get this parameter via special constructor. How can I do same thing for Home page? I mean that I want to enter only /key/value .is it possible? thx, Vitek

Re: FOR LIST OWNER: your antispam is awful it doesn't apply normal letters

2009-03-29 Thread Martijn Dashorst
Don't use HTML formatted messages. It will be awful to read anyway in the archives, text readers and will complicate reading about your markup problems: escaped escaped escaped markup is not fun to debug. And it will increase your spam score by a zillion. Martijn 2009/3/29 Khlystov Alexandr

Re: Equivalent of StackPanel for Wicket

2009-03-29 Thread HHB
Thanks Azarias but I'm not looking for tab component, I'm looking for accordion component (as Leszek suggested). Azarias Tomás wrote: Take a look at Wicket JQuery tab component [1], wicketstuff-jquery [2], wickext [3] [1] -http://xhab.blogspot.com/2007/06/wicket-jquery-tab-component.html

Re: Cookie retrieval issue.

2009-03-29 Thread Murat Yücel
Hi Peter I was creating cookie objects almost in the same way. I was just missing the context path part. I have added it, but still no change. When i am retrieving the cookie from my BasePage then i get nothing: ((WebRequestCycle) RequestCycle.get()).getWebRequest().getCookie(cookieName); I

Re: simple Link

2009-03-29 Thread Mathias P.W Nilsson
Have a look at source code of ExternalLink and Link to see the differens. -- View this message in context: http://www.nabble.com/simple-Link-tp22760269p22766869.html Sent from the Wicket - User mailing list archive at Nabble.com.

jetty prob

2009-03-29 Thread Andreas Kaluza
Hi @ all, I have renamed the package of my wicket-application. Now I cannot start the jetty server. The exception is: ERROR - log- failed wicket.Umfragesystem org.apache.wicket.WicketRuntimeException: Unable to create application of class servlet.UmfragesystemApp

Re: jetty prob

2009-03-29 Thread James Carman
Shutdown your other server (or change what port you're using). Something else is using that port. On Sun, Mar 29, 2009 at 9:27 AM, Andreas Kaluza kal...@rhrk.uni-kl.de wrote: Hi @ all, I have renamed the package of my wicket-application. Now I cannot start the jetty server. The exception

AW: jetty prob

2009-03-29 Thread Andreas Kaluza
Unfortunately the same problem... Any Hints? ERROR - log- failed wicket.Umfragesystem org.apache.wicket.WicketRuntimeException: Unable to create application of class servlet.UmfragesystemApp at

Re: FOR LIST OWNER: your antispam is awful it doesn't apply normal letters

2009-03-29 Thread Marat Radchenko
It's not antispam fault, HTML emails are awful. 29 марта 2009 г. 10:25 пользователь Khlystov Alexandr allex.khlys...@gmail.com написал: FOR LIST OWNER: your antispam is awful it doesn't apply normal letters below is the sample Mail Delivery Subsystem пишет: This is an automatically

Re: jetty prob

2009-03-29 Thread James Carman
The Address already in use: JVM_Bind error message means that something else on your system is tying up the 8080 port. So, either shut down that process or use a different, unused port (try rebooting if you don't know which process is tying up your port). On Sun, Mar 29, 2009 at 9:41 AM, Andreas

Re: Cookie retrieval issue.

2009-03-29 Thread Peter Thomas
2009/3/29 Murat Yücel kodeperke...@gmail.com Hi Peter I was creating cookie objects almost in the same way. I was just missing the context path part. I have added it, but still no change. When i am retrieving the cookie from my BasePage then i get nothing: ((WebRequestCycle)

Re: Modular page

2009-03-29 Thread Peter Thomas
On Sun, Mar 29, 2009 at 2:31 AM, Tomáš Mihok tomas.mi...@cnl.tuke.skwrote: Hey there, I currently started a project which main goal is to create modular page. The idea is to have a main application and a modules that give it functionality. I am new to wicket in particular so I am looking for

Re: jetty prob

2009-03-29 Thread Cristiano Kliemann
Review the parameter applicationClassName of the wicket mapping in your web.xml: Caused by: java.lang.ClassNotFoundException: servlet.UmfragesystemApp -- Cristiano On Sun, Mar 29, 2009 at 10:27 AM, Andreas Kaluza kal...@rhrk.uni-kl.dewrote: Hi @ all, I have renamed the package of my

AW: jetty prob

2009-03-29 Thread Andreas Kaluza
Thanks a lot! I forgot to change it in the web.xml... Damn it ;) -Ursprüngliche Nachricht- Von: Cristiano Kliemann [mailto:cristia...@gmail.com] Gesendet: Sonntag, 29. März 2009 16:14 An: users@wicket.apache.org Betreff: Re: jetty prob Review the parameter applicationClassName of

Re: jetty prob

2009-03-29 Thread Cristiano Kliemann
I forget it all the time. :-) On Sun, Mar 29, 2009 at 11:31 AM, Andreas Kaluza kal...@rhrk.uni-kl.dewrote: Thanks a lot! I forgot to change it in the web.xml... Damn it ;) -Ursprüngliche Nachricht- Von: Cristiano Kliemann [mailto:cristia...@gmail.com] Gesendet: Sonntag, 29. März

Re: Cookie retrieval issue.

2009-03-29 Thread Murat Yücel
Thanks a lot. Will look into it. 2009/3/29 Peter Thomas ptrtho...@gmail.com 2009/3/29 Murat Yücel kodeperke...@gmail.com Hi Peter I was creating cookie objects almost in the same way. I was just missing the context path part. I have added it, but still no change. When i am

[OT] Book/pointers on caching

2009-03-29 Thread Kaspar Fischer
I again and again run into the following problem: My Wicket app displays a complex page, and in order to compile the information needed for this page, I need to do many database/repository queries and/or computations -- so many that it simply takes to long and the user has two wait. Take

Re: Equivalent of StackPanel for Wicket

2009-03-29 Thread Advanced Technology®
The first link it was just resource to see how to implement a wicket component.On second and third you can see the Accordion component implemented. 2009/3/29 HHB hubaghd...@yahoo.ca Thanks Azarias but I'm not looking for tab component, I'm looking for accordion component (as Leszek

Re: Cookie retrieval issue.

2009-03-29 Thread Murat Yücel
Hi Peter I have made a simple quickstart application which has the same issue as i have described. I have attached it to the mailing list. Do you have the time to look it through? Or should i just create a jira? Steps: 1) Enter homepage, type username (admin) password (password) and press login.

Re: Form validation without a form component

2009-03-29 Thread Martijn Dashorst
You might try to return an empty array.. Martijn On Thu, Mar 26, 2009 at 10:37 AM, triswork tristan.k...@gmail.com wrote: Thanks igor, I had a go at implementing the form level validator, but it still requires a FormComponent to attach its error message to. For example: form.add(new

Good practice for temporary resource reference

2009-03-29 Thread Xhelas
I am doing an application with a lot of dynamical image creation. These images need to be cached client side, but their life time is bounded by the suer session's lifetime. So I create a lot of image resource references which url is used but the client. What I did not get in the APi is the way do

Re: adding css and js to header

2009-03-29 Thread fachhoch
to add my javascript into header section , i will use response.renderJavascript(CharSequence, id); my java script is really big lot of code and so i want to put the script into spring bean ,I tried injecting the javscript using @SpringBean(name=) , but this works only for pages and is not

Serious performance degradation

2009-03-29 Thread dtoffe
Hi all, I'm testing a small app about to enter in production, and I've found that performance degrades seriously in a rather small amount of time, even with one single session. The first problem I guess is the lack of LDMs, I underestimated its importance mainly because the application

Re: Serious performance degradation

2009-03-29 Thread Matej Knopp
Hi, On Mon, Mar 30, 2009 at 2:08 AM, dtoffe dto...@yahoo.com.ar wrote: Hi all,    I'm testing a small app about to enter in production, and I've found that performance degrades seriously in a rather small amount of time, even with one single session.    The first problem I guess is the

Re: Serious performance degradation

2009-03-29 Thread Igor Vaynberg
run a garbage collector and take another memory snapshot immediately after. there are a lot of soft references in wicket. -igor On Sun, Mar 29, 2009 at 5:22 PM, Matej Knopp matej.kn...@gmail.com wrote: Hi, On Mon, Mar 30, 2009 at 2:08 AM, dtoffe dto...@yahoo.com.ar wrote: Hi all,    I'm

Re: Mocking input data while testing Panel

2009-03-29 Thread Timo Rantalaiho
On Tue, 17 Mar 2009, nitinkc wrote: How can I set an input value in a component belonging to the Panel to verify that the expected behavior takes place when an ajax event is fired? This panel is not yet associated with a Form and hence there is no FormTester available. Look at what

When and how to use tag 'wicket:component'?

2009-03-29 Thread Zenberg Ding
Hi folks, I just wonder when and how to use tag 'wicket:component'. what's the intention of this tag exists? Thanks - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: ajax busy indicator for AjaxFallbackDefaultDataTable

2009-03-29 Thread mauricio.lopez-soto
What I did for the paginator and sortable columns was to create 2 subclases. For the OrderByBorder I get the indicator on the column to the right, which does not look good. I still don't know how to fix that. These are the two classes: abstract class IndicatingAjaxFallbackOrderByBorder extends