Re: BookmarkablePageLinks using relative vs absolute paths

2010-05-31 Thread Paul Szulc
one think I dont understand. you said thhat you've changed the root to / instead of /wicketpages, but later on you said that /myservlet should redirect to /wicketpages/about. On Mon, May 31, 2010 at 4:34 AM, Chris Colman chr...@stepaheadsoftware.comwrote: Our web application uses wicket with an

RE: BookmarkablePageLinks using relative vs absolute paths

2010-05-31 Thread Chris Colman
What I meant was that the wicket filter is mapped to: /* But the associated servlets in the app all have their own, more specific paths like /myservlet etc., As the wicket filter now is a 'catch all' for all paths I had to extend WicketFilter and override the doFilter method to bypass Wicket

Re: Guice 2 / WarpPersist Wicket

2010-05-31 Thread nino martinez wael
Okay tried moving the @Inject from the setter to the field declaration, still not working. Tried to add the keyword transient to the field, still not working :/ Im a little lost here for once.. Remember it's only when my loadable detachable models are called the 2nd time, on first load it works..

Re: Guice 2 / WarpPersist Wicket

2010-05-31 Thread nino martinez wael
As workaround for now I am doing this, but are a very ugly way: 2010/5/31 nino martinez wael nino.martinez.w...@gmail.com: Okay tried moving the @Inject from the setter to the field declaration, still not working. Tried to add the keyword transient to the field, still not working :/ Im a

Re: Guice 2 / WarpPersist Wicket

2010-05-31 Thread nino martinez wael
Argh, hotkeys in gmail, and daughter jumping around , heres the code notice the extra call in acessor method: import org.apache.wicket.injection.web.InjectorHolder; import org.apache.wicket.model.IModel; import org.apache.wicket.model.LoadableDetachableModel; import com.google.inject.Inject;

Re: Page in Page

2010-05-31 Thread Christian Märzinger
Thank all for the help. Am 28.05.2010 07:21, schrieb Jeremy Thomerson: On Fri, May 28, 2010 at 12:08 AM, Chris Colmanchr...@stepaheadsoftware.com wrote: I think the concepts are very different. The opinion that they are effectively the same was raised in the earlier discussion

Re: BookmarkablePageLink in ModalWindow, a bug?

2010-05-31 Thread tschiffler
Have you found a solution for this problem? I just got the same problem -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/BookmarkablePageLink-in-ModalWindow-a-bug-tp1844382p2236938.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: NonCachingImage and xhtmlRenderer

2010-05-31 Thread Xavier López
Might this have something to do with the fact that I'm faking the requestCycle in order to get the page's processed HTML ? Like having the IResourceListener expired ? I'm faking the request cycle like this : /** Returns the processed HTML of the page as it would have been responded by faking a

Re: WebMarkupContainer as string for use in jqgrid cell

2010-05-31 Thread Ernesto Reinaldo Barreiro
Hi Sam, I took a look at AjaxRequestTarget and its inner classes to check how wicket renders components on ajax requests. These components always have parent pages and the rendering process looks something like this: page.startComponentRender(comp) - comp.renderComponenet() -

SV: DropDownChoice behaviour

2010-05-31 Thread Wilhelmsen Tor Iver
I would like to know what's the outcome of setting setNullValid(true) - - is it that the choices will start with an empty string choice? The empty choice is there for null model objects whether nullValid is true or false, the difference is that if you call setNullValid(false), then the option

From a grateful newbie

2010-05-31 Thread Ioannis Mavroukakis
...a word of thanks to the wealth of info that is http://wicketstuff.org/wicket14/ . As I'm stumbling through building a site with Wicket, I've consistently referred to this site for the bulk of my queries. So thank you to the maintainers, and all the people on this list patiently answering

Re: default form processing when form submitted

2010-05-31 Thread dellik2004
Hi, Thanks for reply, actually yes we are using,, the form data is retaining only when it is completely valid, for example.. mobile number instead of 10 digits i have entered 8 and submitted the form then wicket validates the form and throw the errors, this is good. but the mobile field is

[announce] Wicket Security 1.4 released!

2010-05-31 Thread Martijn Dashorst
We are proud to release Wicket Security 1.4 final. Wicket Security is an attempt to create an out of the box reusable authenticating and authorization framework for Apache Wicket. It contains several projects which can be used standalone or in conjunction with each other. After testing the

Re: Re: RE: Rich Text Editors and Wicket

2010-05-31 Thread nicolas melendez
Strange... It is in google app engine, are you from china? NM 2010/5/30 wicketyan wicket...@gmail.com sorry.can't see http://www.clasificad.com.ar/clasificadoNuevo . Even I used proxy,there is no rich text editors,just a publica file page. 2010-05-30 wicketyan 发件人: nicolas melendez

Right-Click on LinkTree

2010-05-31 Thread AleXeL
Hi everyone, I am using a LinkTree in my application. Each node from my Tree is a link to a page and the Tree is displayed on the left side of every page. Actually, I'm facing a problem when I want to render a page by right-clicking on a node: 1. Initialy, I display one of the page by

Re: Can I develop without recompiling/restarting after every change?

2010-05-31 Thread John Krasnay
This is how I work too. It uses the hot swap feature of the JVM. It works if you only change method bodies, but if you make changes to the class structure (fields, method signatures, etc.) you have to restart the VM. Apparently jRebel can reload even these kinds of changes. I'm happy with hot

Re: Can I develop without recompiling/restarting after every change?

2010-05-31 Thread Thies Edeling
Indeed JRebel reloads class structure changes as well. A very time-saving in combination with jetty. The sysdeo plugin that was recommended earlier is very outdated, hasn't been updated in 3 years. On 05/31/2010 06:01 PM, John Krasnay wrote: This is how I work too. It uses the hot swap

Re: Can I develop without recompiling/restarting after every change?

2010-05-31 Thread James Carman
On Sun, May 30, 2010 at 5:22 PM, Jeremy Thomerson jer...@wickettraining.com wrote: I've not used jRebel, but I commonly run my applications in debug mode in Eclipse and do not have to restart the server - even with code changes.  The exception is changing a method signature of classes that are

Re: [announce] Wicket Security 1.4 released!

2010-05-31 Thread Joe Fawzy
Hi i heard a lot about this project but have no opportunity to play with it i think a (detailed) tutorial or a getting start guide is required(for someone like me) to begin using this any pointers? thanks Joe On Mon, May 31, 2010 at 5:07 PM, Martijn Dashorst martijn.dasho...@gmail.com wrote:

Re: BookmarkablePageLink in ModalWindow, a bug?

2010-05-31 Thread Igor Vaynberg
the modal window javadoc states that the only links that will work inside the modal are ajax links. if you want the bookmarkable page link to work then you probably need to set its target to _top or some other magical value so the browser knows to load it in the main page. -igor On Mon, May 31,

How can I make wicket handle 3:rd party CMS URL's?

2010-05-31 Thread Jimi
Hi, I'm currently investigating the possibility to use Wicket in front of a 3:rd party CMS, and let the CMS generate the URL's. The CMS already has several filters that can process the request and resolve the main objects (for example the article). And I already successfully replaced the last

Re: How can I make wicket handle 3:rd party CMS URL's?

2010-05-31 Thread Igor Vaynberg
yep, extend WebRequestCodingStrategy and resolve the a pagerequesttarget all the urls you want to handle. in later versions WebRequestCodingStrategy is no longer final, and even if it is simply use the decorator pattern. -igor On Mon, May 31, 2010 at 7:28 PM, Jimi jimi.hulleg...@mogul.com