Re: Getting localized string in constructor.

2009-04-14 Thread Jonas
Hi, I don't think createing a ResourceModel instance makes sense, because all ResourceModel does is using the localizer... Regarding the original question, if I remember correctly the warning message only shows up in development mode to give you a heads up that resource lookup will not work as

Re: Getting localized string in constructor.

2009-04-14 Thread Jonas
Just checked the code again, the message seems to be shown always (not just in development mode). To work around this, you can either call the localizer without component (as you originally proposed), or you can configure your logging not to log warnings from the localizer. Just remember that

Re: Fail to close ModalWindow on top of ModalWindow

2009-04-14 Thread freak182
I mean the modal window is not appearing inside iframe in IE7. freak182 wrote: Hello, My problem is the ModalWindow is not appearing in IE..any resources?... Is the issue already resolved? Thanks a lot. Cheers. Mr Mean wrote: Could you open up an issue for this?

Re: Fail to close ModalWindow on top of ModalWindow

2009-04-14 Thread freak182
Hello, My problem is the ModalWindow is not appearing in IE..any resources?... Is the issue already resolved? Thanks a lot. Cheers. Mr Mean wrote: Could you open up an issue for this? Maurice On Wed, Apr 9, 2008 at 10:16 AM, Nili Adoram ni...@qlusters.com wrote: Hi all, I have

class files disappered while deployment

2009-04-14 Thread Altuğ B . Altıntaş
Hi all; I have very interesting problem. I am using netbeans 6.5 + tomcat 6.x + wicket 1.3.5.. My problem is java.lang.NoClassDefFoundError but not a standard one. I have a wicket page Buy.java and Buy.html. When java files are compiled below class files are generated Buy$1.class -- inner

google maps in wicket

2009-04-14 Thread shiraz memon
Hi I am a newbie to wicket and stumbled upon it via several websites and blogs, even I managed to run simple examples with in couple of minutes. Also very amazed about its elegance and simplicity, which really pushes me to use this framework in my application. I am using maven for dependency

Re: google maps in wicket

2009-04-14 Thread Martin Funk
Hi Shiraz, gmap2-contrib has moved https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/ mf 2009/4/14 shiraz memon shiraz.li...@googlemail.com Hi I am a newbie to wicket and stumbled upon it via several websites and blogs, even I managed to run simple

Re: Getting localized string in constructor.

2009-04-14 Thread Srikanth.NT
We use a static method to make this work without warning. public static String getResourceString(final Class clazz, final String propertyName) { ListIStringResourceLoader loaderList = Application.get().getResourceSettings().getStringResourceLoaders(); for (IStringResourceLoader loader :

Re: google maps in wicket

2009-04-14 Thread shiraz memon
Thanks Martin for your quick reply, I have tried to fetch dependencies using maven, but seems like dependencies could not be downloaded. below is the repository if I am adding to my pom repositories repository idwicket-snaps/id urlhttp://wicketstuff.org/maven/repository/url snapshots

Re: wicket:Interface TabbedPanel and INewBrowserWindowListener

2009-04-14 Thread Daniele Dellafiore
It seems to be related to TabbedPanel in fact when I switch to AjaxTabbedPanel, the parameter is no longer added. I did some debug and what happens is that in the method RequestCycle.urlFor(Component, RequestListenerIntercface, ValueMap) the process goes into the first if branch and the line

Re: google maps in wicket

2009-04-14 Thread Martin Funk
as far as I can tell there is no wicketstuff-core or gma2 module on maven. You need to compile it yourself. svn checkout https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/ cd wicketstuff-core mvn clean install should just do that. mf Am 14.04.2009 um 15:29

Re: google maps in wicket

2009-04-14 Thread Jeremy Thomerson
There is an RC2 release at my repo [1]. I am actually working on merging this with the wicketstuff repo that you have in your pom this morning. I'll send a note when it's done. [1] http://www.wickettraining.com/ws-repo/ -- Jeremy Thomerson http://www.wickettraining.com On Tue, Apr 14, 2009

problem to display a panel via an ajax refresh

2009-04-14 Thread Albert, Michael (LU - Luxembourg)
Hi All, I would like to have a panel in the footer part of my page. This panel should contain a panel with a form. But, as I have several types of information displayed on the page, the form would depends on what piece of information must be modified. The data is represented as a tree:

Re: google maps in wicket

2009-04-14 Thread Jeremy Thomerson
Okay - the rc2 release is now on wicketstuff.org repo as well, so you can use the following dependency: dependency groupIdorg.wicketstuff/groupId artifactIdgmap2/artifactId version1.4-rc2/version /dependency -- Jeremy Thomerson

Problem with AbstractAjaxTimerBehavior for periodic content update

2009-04-14 Thread Tom Wollert
Hello there, I have a website which needs quite frequent updating. I was using the AbstractAjaxTimerBehavior for quite some time, with 1 second duration. Worked fine on my working machine (dual core) but now on my home PC I realized some problems. Firefox uses up a lot of CPU power apparently,

OAuth in Wicket

2009-04-14 Thread Brill Pappin
This looks very interesting. http://oauth.net/ Has anyone integrated OAuth with wicket? - Brill Pappin smime.p7s Description: S/MIME cryptographic signature

Re: encoding issue on ajax form post (portlet)

2009-04-14 Thread Vivek Kumar
Hi Did that solve your problem in portlet ? Regards Vivek Francisco Diaz Trepat - gmail wrote: Aha. Thanks eike. I'll try it right away. On Sat, Mar 14, 2009 at 4:10 PM, Eike Kettner n...@eknet.org wrote: Hi Francisco, i ran into a similiar problem with ajax and umlauts. in my

Re: Possible to retrieve previous page from PageMap

2009-04-14 Thread Daniele Dellafiore
Here is my return to last page problem. A detail page has multiple tabs, an AjaxTabbedPanel. Swithing between tabs does not put another page in browser history, so history.back() is fine. I have also a checkbox that trigger enable/disable state of all the input of the form. Is an AjaxCheckBox

Re: wicket:link behavior changed in 1.4r2

2009-04-14 Thread Jeremy Thomerson
I'm pretty sure this change is a result of WICKET-1513 [1]. Please file a JIRA that explains your behavior below. [1] https://issues.apache.org/jira/browse/WICKET-1513 -- Jeremy Thomerson http://www.wickettraining.com On Mon, Apr 13, 2009 at 4:17 PM, Jeremy Thomerson

When should you use DefaultDataTable vs. ListView ?

2009-04-14 Thread Phillip Rhodes
I am writing an application and have used both the DefaultDataTable and ListView to display paged data. Besides the feature that DefaultDataTable allows you to sort columns easily, is there any reason to choose one over the other? Thanks!

Re: wicketsuff commit access

2009-04-14 Thread Maarten Bosteels
Thanks Igor. Maarten On Tue, Apr 14, 2009 at 2:42 AM, Igor Vaynberg igor.vaynb...@gmail.com wrote: done -igor On Mon, Apr 13, 2009 at 1:47 PM, Maarten Bosteels mbosteels@gmail.com wrote: Hello, I have some small fixes for ki-security under wicketstuff-core. Could someone grant me

Re: Retrieving/serializing the javascript for an AjaxLink

2009-04-14 Thread mallet
Figured it out Basically no need to use AjaxLink since I have to construct the javascript redirect manually. I ended up doing this: chart.setOnClick(window.location=' + RequestCycle.get().urlFor(new CarPage(make, model, year)) + '); mallet wrote: I am trying to embed javascript links in

RE: OAuth in Wicket

2009-04-14 Thread David Leangen
Yes. There is a java library you can use: http://code.google.com/p/oauth/ Unfortunately, my stuff is not well generalized, so there's no point that I make it public. However, if you have any particular problems, please let me know. I think a few others have also done this before, too.

Informal Wicket meeting in London

2009-04-14 Thread jWeekend
Due to popular demand, especially from our London Wicket Event guests, we're arranging an informal get together (AKA drink) in London. This will probably be on Monday 20th April, either close to our office (NW6), in W2 or the West End, all TBC. Drop me a line [1] if you can make it. Regards -

Re: OAuth in Wicket

2009-04-14 Thread Brill Pappin
Yes I did see the implementation... just wondered if anyone had written any wicket specific code. - Brill Pappin On 14-Apr-09, at 6:35 PM, David Leangen wrote: Yes. There is a java library you can use: http://code.google.com/p/oauth/ Unfortunately, my stuff is not well

URL error?

2009-04-14 Thread Joe
Hi All, We are using Sitemesh2.2.1 along with wicket1.3.1 in our product. The sitemesh JSP page contains SCRIPT and LINK tags to include styles and functions that will determine the header and footer for the wicket pages. When I use the URL like http://localhost.../helpDetails?topic=xyz

Re: URL error?

2009-04-14 Thread Johan Compagner
Are your js and css files really also under that mount? I guess not So you have to rewrite your links to those resources in your markup so that they dont use relative urls On 15/04/2009, Joe huanghu...@yahoo.cn wrote: Hi All, We are using Sitemesh2.2.1 along with wicket1.3.1 in our product.

Re: URL error?

2009-04-14 Thread Joe
thanks johan    my js and css is relative urls.i will use  js and css file absolut urls. --- 09年4月15日,周三, Johan Compagner jcompag...@gmail.com 写道: 发件人: Johan Compagner jcompag...@gmail.com 主题: Re: URL error? 收件人: users@wicket.apache.org, huanghu...@yahoo.cn 日期: 2009,415,周三,1:37下午 Are your