Re: Dynamic Session.style

2013-05-03 Thread Allen Gilbert
sh, going back to the first tab and refreshing the page > should be in Spanish. > > Same for you. What you need to do is create a new session for the second tab > in order to treat them separate. > > ~ Thank you, > Paul Bors > > -Original Message- > From: Alle

Dynamic Session.style

2013-05-03 Thread Allen Gilbert
et Session.style for each request, but I'm not sure if that's a good idea. Thanks for your help! -Allen - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: StalePageException handling issue

2012-04-23 Thread Allen Gilbert
Excellent. Thanks! On Mon, Apr 23, 2012 at 2:22 AM, Martin Grigorov wrote: > Hi Allen, > > This is improved in 1.5-SNAPSHOT and will be part of 1.5.6. > See https://issues.apache.org/jira/browse/WICKET-4488 and > https://issues.apache.org/jira/browse/WICKET-4441 > > On Mon,

StalePageException handling issue

2012-04-22 Thread Allen Gilbert
the stale link on Page A, they'll get a fresh rendering of Page A. Thanks for your help! -Allen

Re: JavaSerializer - java.util.ConcurrentModificationException during page serialization

2012-03-01 Thread Allen Gilbert
pplication mentioned that their thread-safety is up to users. I found out in my copy of Wicket in Action :-). Thanks! On Wed, Feb 29, 2012 at 1:54 AM, Martin Grigorov wrote: > Hi, > > On Wed, Feb 29, 2012 at 12:37 AM, Allen Gilbert > wrote: > > Hello, > > > > I&#x

Re: Component implementation - instance variables

2012-02-28 Thread Allen Gilbert
PM, Allen Gilbert > wrote: > > I understand that it's not a good idea to store model bean objects as > > instance variables in a Component, but I'm not clear on this: is it OK to > > store references to child Components as private fields in a parent > > Component (e.

onConfigure()

2012-02-28 Thread Allen Gilbert
OK, one more question, then I'll stop pestering everyone...at least for now : ). Is it problematic to make changes to a Component's model in its onConfigure() method? -Allen

Component implementation - instance variables

2012-02-28 Thread Allen Gilbert
y when the child components need to be added to an AjaxRequestTarget. However, when that Panel is serialized, will its child Components be serialized twice, once in the component hierarchy, and again as instance variables? -Allen

JavaSerializer - java.util.ConcurrentModificationException during page serialization

2012-02-28 Thread Allen Gilbert
related mechanisms (or defined custom writeObject methods), so I'm at a loss as to where I should look for the cause of this error. Any ideas? Thanks! -Allen

Error detaching RequestHandler

2012-01-19 Thread Allen Gilbert
Running 1.5.2, we occasionally see this error message in our logs, usually many times in a row: 2012-01-19 10:03:09,284 ERROR [org.apache.wicket.request.RequestHandlerStack] Error detaching RequestHandler org.apache.wicket.RestartResponseAtInterceptPageException No other details are provided. An

Re: What is the cause for log entry "ModificationWatcher - Cannot track modifications to resource"

2012-01-02 Thread Allen Gilbert
Per, I ran into this problem recently and solved it by removing spaces from directory names in my project path. I plan to file a Jira issue at some point, as it seems that ModificationWatcher should be able to handle file paths with spaces... -Allen On Mon, Jan 2, 2012 at 4:42 AM, Per Newgro

Re: Wicket.Ajax.registerPre/PostCallHandler filtering

2011-12-29 Thread Allen Gilbert
the blocking > div. > > On Thu, Dec 29, 2011 at 5:28 PM, Allen Gilbert >wrote: > > > Ernesto, > > > > Interesting...I've only used IAjaxIndicatorAware to display a loading > gif, > > but it might solve this problem if I can get it to nicely show an

Re: Wicket.Ajax.registerPre/PostCallHandler filtering

2011-12-29 Thread Allen Gilbert
Ernesto, Interesting...I've only used IAjaxIndicatorAware to display a loading gif, but it might solve this problem if I can get it to nicely show and hide a div that a) blocks the user from interacting with my panel and b) shows a loading indicator. I'll try it out. Thanks! -All

Re: Wicket.Ajax.registerPre/PostCallHandler filtering

2011-12-28 Thread Allen Gilbert
- and post-process calls for the various ajax components in my Panel. -Allen On Thu, Dec 29, 2011 at 12:25 AM, Martin Grigorov wrote: > See IAjaxCallDecorator. > Each Ajax component can decorate its ajax call with pre- and post- > conditions. To remove the indicator use onSuccess and onFailure

Wicket.Ajax.registerPre/PostCallHandler filtering

2011-12-28 Thread Allen Gilbert
ternatively, is there a way to decorate all ajax request javascript for a panel's child components? I'd like to avoid having to modify every ajax behavior of the Panel's child components in order to show the activity indicator on the panel. -Allen

Hide page version query parameters

2011-12-05 Thread Allen Gilbert
Is there a built-in way to hide page version parameters (e.g. ?12) in Wicket 1.5? If not, is it possible to write a custom IRequestMapper that does so without screwing up proper request handling? -Allen

Re: IRequestMapper that ignores page version

2011-12-05 Thread Allen Gilbert
oes anyone see any issues with this approach? Thanks! -Allen On Mon, Dec 5, 2011 at 2:28 PM, Martin Grigorov wrote: > Hi, > > Here is an idea (again from me:-) ): > > Override MountedMapper and in #mapRequest(Request) do: > > if (((WebRequest) request).isAjax()) return super

IRequestMapper that ignores page version

2011-12-05 Thread Allen Gilbert
s, how do I create a reliable IRequestMapper for a page that, when requested, always re-renders itself? If there's a different way to accomplish this (i.e. without creating a custom IRequestMapper or making the page stateless), I'd love to know. Thanks for your help! -Allen

Re: Hiding subclass components

2011-11-03 Thread Allen Gilbert
Override MarkupContainer.add()? It's final, so I can't... On Thu, Nov 3, 2011 at 4:46 PM, Igor Vaynberg wrote: > override add() and funnel everything into a non-transparent > webmarkupcontainer. > > -igor > > On Thu, Nov 3, 2011 at 2:40 PM, Allen Gilbert wrote: >

Hiding subclass components

2011-11-03 Thread Allen Gilbert
mponents when isAccessible is false, but that seems fairly redundant. Any other ideas? Aside from defining a transparent resolver (not recommended, and apparently removed in 1.5), is there a design flaw to this approach? I'm using Wicke

Updating a child of a transparent resolver via ajax

2011-11-02 Thread Allen Gilbert
any way I can get around this issue short of ensuring that the repeater's parent is not a transparent resolver? Thanks for your help! -Allen - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional c

Re: setOutputMarkupId(true) on org.apache.wicket.markup.html.panel.Panel

2011-01-26 Thread Allen
Igor, Thanks for the explanation...I was indeed attaching my Panel to a tag. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/setOutputMarkupId-true-on-org-apache-wicket-markup-html-panel-Panel-tp3238774p3238938.html Sent from the Users forum mailing list archive at

Re: Wicket Release Plans for 1.5

2009-10-30 Thread Richard Allen
Is the Wicket Ajax Next Generation work going into 1.5? Also, is there plans for an event bus, sort of like what you see in Jonathan Locke's 26 wicket tricks source code? I've seen some really nice use of event bus in GWT that I think Wicket could benefit from. -Richard On Fri, Oct 30, 2009 at

Re: How to organize pages layout in real world applications

2009-10-13 Thread Richard Allen
Also, this explains the example: http://wicket.apache.org/exampleajaxcounter.html 2009/10/13 Richard Allen > One way is to make your "Client" area a Wicket Panel and make your nav > links extend AjaxLink (or AjaxFallbackLink), then add the Client Panel to > the AjaxRe

Re: How to organize pages layout in real world applications

2009-10-13 Thread Richard Allen
One way is to make your "Client" area a Wicket Panel and make your nav links extend AjaxLink (or AjaxFallbackLink), then add the Client Panel to the AjaxRequestTarget in your implemented AjaxLink.onClick(AjaxRequestTarget) method. Note, the components you add to the AjaxRequestTarget must have Comp

AW: Thanks Wicket-Team!

2009-07-28 Thread Arthur Leigh Allen
Gute Arbeit Leute und viel Erfolg mit dem Projekt. Ich hoffe wir ziehen auch bald nach :) Gruß Arthur Von: Oliver Krohne An: users@wicket.apache.org Gesendet: Dienstag, den 28. Juli 2009, 13:01:53 Uhr Betreff: Thanks Wicket-Team! Hi, Many thanks to the Wicke

AW: AW: SSL - ajax login

2009-07-28 Thread Arthur Leigh Allen
rom the console like wicket is trying to hit that url, what you can do is set a breakpoint in wicketfilter and see if that request ever reaches the server. -igor On Mon, Jul 27, 2009 at 4:56 AM, Arthur Leigh Allen wrote: > Hi again Igor, > > I did the following now: > I called the webs

AW: the effective ways of wicket models to access database

2009-07-27 Thread Arthur Leigh Allen
what about the LoadableDetachableModel?   IModel model = new LoadableDetachableModel() {     protected Object load() {     return dao.getX();     } }; Von: David Chang An: users@wicket.apache.org Gesendet: Montag, den 27. Juli 2009, 14:20:14 Uhr Betreff: th

AW: AW: SSL - ajax login

2009-07-27 Thread Arthur Leigh Allen
url when you click the link. -igor On Sun, Jul 26, 2009 at 1:15 PM, Arthur Leigh Allen wrote: > Hi Igor, > > I used Firebug to have a look at the onClick event. > I've inspected two links, one usual ajax link and one for the ssl login. > > > > Reg

AW: AW: SSL - ajax login

2009-07-27 Thread Arthur Leigh Allen
n you click the link. -igor On Sun, Jul 26, 2009 at 1:15 PM, Arthur Leigh Allen wrote: > Hi Igor, > > I used Firebug to have a look at the onClick event. > I've inspected two links, one usual ajax link and one for the ssl login. > > > > Regarding

AW: AW: SSL - ajax login

2009-07-26 Thread Arthur Leigh Allen
login whatever url you see when hovering over the link is not the url used for ajax - not necessarily. you should inspect the onclick handlers. -igor On Fri, Jul 24, 2009 at 12:20 PM, Arthur Leigh Allen wrote: > no, sorry... the url is not changing to http://locahost:8080/projectname/# > but

AW: AW: SSL - ajax login

2009-07-26 Thread Arthur Leigh Allen
__ Von: Igor Vaynberg An: users@wicket.apache.org Gesendet: Freitag, den 24. Juli 2009, 21:51:48 Uhr Betreff: Re: AW: SSL - ajax login whatever url you see when hovering over the link is not the url used for ajax - not necessarily. you should inspect the onclick handlers. -igor

AW: AW: SSL - ajax login

2009-07-24 Thread Arthur Leigh Allen
Fri, Jul 24, 2009 at 2:19 AM, Arthur Leigh Allen wrote: > Hi Igor, > > I tried to do it as simple as possible so I returned > https://localhost:8443/projectname in the overridden method getCallbackUrl of > AjaxFormSubmitBehavior. The result was the same. The link pointed to the url

AW: AW: AW: SSL - ajax login

2009-07-24 Thread Arthur Leigh Allen
esterday, I found it today However I would appreciate a response to the other questions. Thx Arthur ____ Von: Arthur Leigh Allen An: users@wicket.apache.org Gesendet: Freitag, den 24. Juli 2009, 11:19:23 Uhr Betreff: AW: AW: SSL - ajax login Hi Igor, I tried t

AW: AW: SSL - ajax login

2009-07-24 Thread Arthur Leigh Allen
he.org Gesendet: Donnerstag, den 23. Juli 2009, 16:37:22 Uhr Betreff: Re: AW: SSL - ajax login javascript invokes the url you give it, so it looked like it should work. you might have to trace deeper to see whats going on. -igor On Thu, Jul 23, 2009 at 4:41 AM, Arthur Leigh Allen wrote: > Hi

AW: AW: SSL - ajax login

2009-07-23 Thread Arthur Leigh Allen
to it. -igor On Wed, Jul 22, 2009 at 2:37 AM, Arthur Leigh Allen wrote: > Hi again, > > I need to know if it's possible to switch to SSL via button or form. > Otherwise I have to switch back to wicket 1.3.5. I'm in hurry because > we will go online within the next 10

AW: AW: SSL - ajax login

2009-07-22 Thread Arthur Leigh Allen
on you can override getcallbackurl() and append https to it. -igor On Wed, Jul 22, 2009 at 2:37 AM, Arthur Leigh Allen wrote: > Hi again, > > I need to know if it's possible to switch to SSL via button or form. > Otherwise I have to switch back to wicket 1.3.5. I'm in hurry be

AW: AW: SSL - ajax login

2009-07-22 Thread Arthur Leigh Allen
regards Arthur Von: Arthur Leigh Allen An: users@wicket.apache.org Gesendet: Dienstag, den 21. Juli 2009, 19:18:18 Uhr Betreff: AW: SSL - ajax login Hello Igor, thanks for your early reply. Yes, my login form is submitted via ajax. public class BasePage {         public void

BoundCompoundPropertyModel @Deprecated

2009-07-21 Thread Arthur Leigh Allen
Hallo folks, can someone please tell me why the BoundCompoundPropertyModel is declared as deprecated in wicket 1.4? I'm about to migrate from 1.3.5 to 1.4RC7 and I got 980 warnings. I solved about 450 today. I got about 350 warnings because of the BoundCompoundPropertyModel. I loved that model

AW: SSL - ajax login

2009-07-21 Thread Arthur Leigh Allen
slform, your login form - making sure to include the code to the component that submits it. -igor On Tue, Jul 21, 2009 at 8:34 AM, Arthur Leigh Allen wrote: > Hello folks, > > I'm using wicket 1.4 RC7 now and I have a question regarding the usage of ssl. > I use the HttpsR

SSL - ajax login

2009-07-21 Thread Arthur Leigh Allen
Hello folks, I'm using wicket 1.4 RC7 now and I have a question regarding the usage of ssl. I use the HttpsRequestCycleProcessor with the annotation @RequireHttps.   Imagine the following case like it is realized on different sites like web.de or gmx.de as well as xing.com. The first call will re

Re: JDeveloper - Can I get a show of hands?

2009-07-02 Thread Richard Allen
Now that Oracle bought Sun I wonder if JDev and Netbeans will cross paths. A great free, cross-platform SQL tool is SQuirreL ( http://squirrel-sql.sourceforge.net/). On Sat, Jun 20, 2009 at 4:45 PM, Scott Swank wrote: > I'm at best 50% DBA, by training. You end up with multi-step > operations

Re: Putting HTML files in src/main/webapp

2009-05-05 Thread Richard Allen
To make Luther's point more explicit: Wicket allows you to bundle everything a Wicket component needs (Java code, HTML, CSS, images, etc.) into a single JAR and drop that JAR into the WEB-INF/lib directory of any WAR, thereby making the JAR essentially self-contained and reusable. The benefit this

Re: Putting HTML files in src/main/webapp

2009-05-04 Thread Richard Allen
If you are using war, then the maven-war-plugin will automatically pick up the resources in src/main/webapp, which means you do not have to configure that directory as a resource. Additionally, the maven-resources-plugin automatically picks up resources in src/main/resources, so you don't have to e

Re: ResourceReference question

2009-04-20 Thread Richard Allen
I believe you want to use ContextRelativeResource. See: http://wicket.apache.org/docs/1.4/index.html?org/apache/wicket/resource/ContextRelativeResource.html On Mon, Apr 20, 2009 at 6:43 AM, Eyal Golan wrote: > Hello, > I've been looking for an answer but couldn't find it. > We have a page that

AW: AutoCompleteTextField buggy?

2009-03-18 Thread Arthur Leigh Allen
Leigh   Von: Phil Grimm An: users@wicket.apache.org Gesendet: Montag, den 9. Februar 2009, 04:27:35 Uhr Betreff: Re: AutoCompleteTextField buggy? I tried it in my app (running 1.4-rc1) and was not able to reproduce this. Phil On Sat, Feb 7, 2009 at 1:05 PM, Arthur Leigh

Re: Extensible wicket application

2009-03-12 Thread Richard Allen
Here is a good intro to OSGi: http://www.javaworld.com/javaworld/jw-03-2008/jw-03-osgi1.html Here is one framework for running Wicket in OSGi: http://www.ops4j.org/projects/pax/wicket/ Here is a project that integrates Guice, Wicket, Hibernate, and OSGi: http://code.google.com/p/modulefusion/ -Ric

AW: resource cacheable firefox/opera

2009-03-10 Thread Arthur Leigh Allen
re and no-cache headers will NOT prevent firefox3 from using its memory cache (at least not with pages). Your best bet is to use different urls. On Tue, 10 Mar 2009 14:56 +, "Arthur Leigh Allen" wrote: > Hi folks, >   > I've implemented a RemoteImage class whic

AW: resource cacheable firefox/opera

2009-03-10 Thread Arthur Leigh Allen
sorry people. i was trying all the time but i didn't see the class NonCachingImage now it works Von: Arthur Leigh Allen An: users@wicket.apache.org Gesendet: Dienstag, den 10. März 2009, 15:56:24 Uhr Betreff: resource cacheable firefox/opera Hi folks,  

resource cacheable firefox/opera

2009-03-10 Thread Arthur Leigh Allen
Hi folks,   I've implemented a RemoteImage class which extends the Image class. The method setCacheable works with Internet Explorer but neither with Firefox nor with Opera. If I load an image the first time, the correct image is shown. When I try to load a different image (path is applied correct

Re: What IDE best fits with Wicket?

2009-02-27 Thread Richard Allen
I think when/if Eclipse supports nested projects, that might help. Eclipse.org appears to be working on it for version 4. See: https://bugs.eclipse.org/bugs/show_bug.cgi?id=35973 I have also ran into problems with m2eclipse, however I have kept it installed for use with small projects and for the

Re: GSoC ideas for 09

2009-02-27 Thread Richard Allen
gs > > fixed in 1.3.6 and 1.4, I find it hard to believe that anyone will > > have the time and energy to do the mentoring as well. I don't have > > that time and energy. > > > > Martijn > > > > On Thu, Feb 26, 2009 at 3:03 PM, Richard Allen

Re: GSoC ideas for 09

2009-02-26 Thread Richard Allen
The words of C. Bergstrom may have been poorly chosen, but he seems to have the same goal of wanting Wicket to succeed and grow in popularity. Providing harsh responses to users that, despite poor communication, are otherwise excited about your project does not help to grow your community or get ot

Re: GSoC ideas for 09

2009-02-26 Thread Richard Allen
I did some reading and found that a "mentoring organization" for the GSoC is considered "A group running an active free/open source software project". That seems to imply a core committer would need to be involved. See: http://code.google.com/opensource/gsoc/2009/faqs.html#0_1_org_is_47611255748869

Re: Yet another Wicket quick start application...

2009-02-20 Thread Richard Allen
Sure. On Fri, Feb 20, 2009 at 2:45 AM, nino martinez wael < nino.martinez.w...@gmail.com> wrote: > If your on it Richard, could you put in the wicket merchandise shop aswell? > cafepress.com/apachewicket > > 2009/2/19 Richard Allen > > > I like the wickethub.o

Re: Yet another Wicket quick start application...

2009-02-19 Thread Richard Allen
get better in the near future. > > francisco > > -- > http://wickethub.org > > > > On Thu, Feb 19, 2009 at 2:10 PM, Richard Allen > wrote: > > True. And I have no problem with that. I'll update the wiki with what I > know > > before the end of the we

Re: Yet another Wicket quick start application...

2009-02-19 Thread Richard Allen
True. And I have no problem with that. I'll update the wiki with what I know before the end of the week. However, I believe the good management of projects is in large part what makes them a success. On Wed, Feb 18, 2009 at 11:54 AM, Martijn Dashorst < martijn.dasho...@gmail.com> wrote: > Most

Re: Yet another Wicket quick start application...

2009-02-18 Thread Richard Allen
As a fairly new Wicket user, I find it moderately difficult and confusing to find out what libraries/toolkits/frameworks/components/ide pluins/etc. are available. There doesn't seem to be a central comprehensive list that is regularly maintained. I feel like I have to look in several places, or do

Re: Using Eclipse & Wicket for Modular Webapps

2009-02-09 Thread Richard Allen
That is very interesting. We have divided our web applications into "modules", which are essentially mini WARs that are merged in the build process to make the final deployed WAR. This allows us to share these "modules" among various web applications, which helps with code reuse and maintainability

AW: AutoCompleteTextField buggy?

2009-02-07 Thread Arthur Leigh Allen
hi igor, it's 1.3.5 Von: Igor Vaynberg An: users@wicket.apache.org Gesendet: Samstag, den 7. Februar 2009, 00:44:28 Uhr Betreff: Re: AutoCompleteTextField buggy? what wicket version are you using? -igor On Fri, Feb 6, 2009 at 3:32 AM, Arthur Leigh

AW: AW: AW: 2 DropDownChoices with a renderer. ajax update

2009-02-04 Thread Arthur Leigh Allen
e. Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device -Original Message- From: Arthur Leigh Allen Sent: Wednesday, February 04, 2009 3:57 AM To: users@wicket.apache.org Subject: AW: AW: 2 DropDownChoices with a renderer. ajax update it seems to me like th

AW: AW: AW: 2 DropDownChoices with a renderer. ajax update

2009-02-04 Thread Arthur Leigh Allen
sorry i meant: neither the getIdValue nor the getDisplayValue are called Von: Arthur Leigh Allen An: users@wicket.apache.org Gesendet: Mittwoch, den 4. Februar 2009, 10:57:28 Uhr Betreff: AW: AW: 2 DropDownChoices with a renderer. ajax update it seems to me

AW: AW: 2 DropDownChoices with a renderer. ajax update

2009-02-04 Thread Arthur Leigh Allen
? Von: Arthur Leigh Allen An: users@wicket.apache.org Gesendet: Mittwoch, den 4. Februar 2009, 09:24:39 Uhr Betreff: AW: 2 DropDownChoices with a renderer. ajax update i already saw that example igor but the difference is that they're using a property model and they overrid

AW: 2 DropDownChoices with a renderer. ajax update

2009-02-04 Thread Arthur Leigh Allen
e see here for clues http://wicketstuff.org/wicket13/ajax/choice.1 -igor On Tue, Feb 3, 2009 at 2:54 PM, Arthur Leigh Allen wrote: > Hello people, > > thanks for helping the newbies in wicket. > > I got one more question: > -I use two drop down choices > -The first one includ

2 DropDownChoices with a renderer. ajax update

2009-02-03 Thread Arthur Leigh Allen
Hello people, thanks for helping the newbies in wicket. I got one more question: -I use two drop down choices -The first one includes all countries, the second one the related states -If the first country choice changed, the second one should be updated via ajax -In both choices i use a choice re

AW: AW: getRequest().getPage() always null

2009-02-03 Thread Arthur Leigh Allen
st to have a look into wicket-auth-roles (and the examples). there's a lot already implemented and you don't have to hook into the requestcycle too much ... regards, Michael Arthur Leigh Allen wrote: > > Hello people, > > any explanation or suggestion? > Is there a pos

Re: Active Wicket ExtJS ?

2009-01-30 Thread Richard Allen
See: http://code.google.com/p/wicket-ext/ On Fri, Jan 30, 2009 at 10:43 AM, Hoover, William wrote: > Is there any active projects for Wicket and ExtJS out there? I know of > the one that used to be at wickettools.org, but it looks like a dead > project (no updates for over a year). There was also

AW: open link in new window => target is null

2009-01-28 Thread Arthur Leigh Allen
Hello people, this is my second problem I cannot resolve. Why is the target object always null if I open an AjaxFallbackLink in a new window or tab? Best regards, Leigh Von: Arthur Leigh Allen An: users@wicket.apache.org Gesendet: Mittwoch, den 21. Januar

AW: getRequest().getPage() always null

2009-01-28 Thread Arthur Leigh Allen
ectly. regards Dipu On Wed, Jan 21, 2009 at 3:18 PM, Arthur Leigh Allen wrote: > Hello wicket community, > > > there is a second issue I don't know how to solve. > > Imagine the following situation: > -User visits page > -User logs in > -User clones the browser window

AW: getRequest().getPage() always null

2009-01-21 Thread Arthur Leigh Allen
thx for your reply the page does not expire. the session is still running. only the login status changes. do you know why getRequest().getPage() is always null?  best regards Leigh

getRequest().getPage() always null

2009-01-21 Thread Arthur Leigh Allen
Hello wicket community, there is a second issue I don't know how to solve. Imagine the following situation: -User visits page -User logs in -User clones the browser window by pressing Strg+N (2 browser windows with logged-in-panels are shown now) -User logs out in second page -User closes secon

getRequest().getPage() always null

2009-01-21 Thread Arthur Leigh Allen
MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-1602752818-1232550898=:63833" --0-1602752818-1232550898=:63833 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable =0A=0AHello wicket community,=0A=0A=0Athere is a second issue I don't know = how to

open link in new window => target is null

2009-01-21 Thread Arthur Leigh Allen
Hello wicket community, yesterday I found out that the target object in the onClick event is null if I click with the right mouse button on an ajax fallback link and select "open in new window". Does someone know why? Best regards Leigh

Re: Things I miss in Wicket

2009-01-16 Thread Richard Allen
> > > What I don't like about Wicket is, that it is like writing normal Java > applications - although rich clients applications are being replaced with > web-based solutions and there is a fundamental difference between > web-applications and normal java applications. If you have a java > applicat

Re: JavaScript and Wicket

2009-01-16 Thread Richard Allen
See: http://cwiki.apache.org/WICKET/calling-wicket-from-javascript.html Or more generally: http://cwiki.apache.org/WICKET/ajax.html -Richard On Fri, Jan 16, 2009 at 4:29 AM, Sniffer wrote: > > Thanx, I think I understand you, but still I'm not sure how to contribute > client custom JS script wi

Re: Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-16 Thread Richard Allen
Using m2eclipse, you can also create a new Maven project using an archetype from within Eclipse. Choose File > New > Maven Project > Next, and select the archetype you want to use. See: http://books.sonatype.com/maven-book/reference/eclipse-sect-m2e-create-archetype.html -Richard On Fri, Jan 16,

Re: Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-16 Thread Richard Allen
The only time I have seen something under the target folder added as a source folder in Eclipse is if it specifically configured that way in the section of the pom.xml. This is sometimes done if you are generating sources or resources using something like JAXB, e.g., target/generated-sources. -Ri

Re: Wicket-spring-tomcat integration

2008-12-15 Thread Richard Allen
The url-pattern only supports using a wildcard at the end of the pattern (e.g., "/myapp/*") or as a extension mapping prefix (e.g., *.do). See section SRV.11.2 of the servlet specification, which can be downloaded from here: http://jcp.org/aboutJava/communityprocess/final/jsr154/index.html Therefo

Re: [OT] wicket users around the world

2008-12-11 Thread Richard Allen
American in Atlanta, Georgia, USA On Thu, Dec 11, 2008 at 1:57 PM, francisco treacy < francisco.tre...@gmail.com> wrote: > to know a little bit more of our great (and vast) community, i was > just wondering if you're keen on sharing where you come from and/or > where you work with wicket... > > f

Re: Javascript Wicket wrapper (like ExtGwt and SmartGWT) ?

2008-12-02 Thread Richard Allen
For integration between Ext JS and Wicket, check out: http://code.google.com/p/wicket-ext/ http://www.wickettools.org/index.php/extjs-integration -Richard On Tue, Dec 2, 2008 at 10:35 AM, Cédric Thiébault < [EMAIL PROTECTED]> wrote: > Hi, > Yes I was thinking about something like this but with m

Re: Wicket with GWT

2008-11-13 Thread Richard Allen
Also, can you share what you get from Wicket that you don't get from GWT? That would be useful for those who venture on this list considering GWT versus Wicket. Thanks, Richard On Thu, Nov 13, 2008 at 9:53 AM, Richard Allen <[EMAIL PROTECTED]>wrote: > If ExtJS essentially give

Re: Wicket with GWT

2008-11-13 Thread Richard Allen
If ExtJS essentially gives you what you want in the way of widgets, why not look into integration of ExtJS and Wicket? In the near future, we will be migrating our applications that use ExtJS to Wicket. There has already been some work done in this area. See the following links. ExtJS 2.2: http://

Re: OFF TOPIC - all-in-one wysiwyg website package?

2008-11-13 Thread Richard Allen
Brix (http://code.google.com/p/brix-cms/). But it's new and not as feature rich as something like Joomla. On Thu, Nov 13, 2008 at 9:26 AM, Johan Compagner <[EMAIL PROTECTED]>wrote: > Where is the Wicket solution! >

Re: OFF TOPIC - all-in-one wysiwyg website package?

2008-11-13 Thread Richard Allen
What about just starting with Google Sites: http://www.google.com/sites/overview.html ? It's free and easy. Good for a static website, which sounds like what you are looking to produce. -Richard On Thu, Nov 13, 2008 at 4:05 AM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > Take a look at Joomla 1

AW: session timeout and session id

2008-11-06 Thread Arthur Leigh Allen
th the Map solution? I'm pretty sure it works. cheers, Bruno Borges blog.brunoborges.com.br +55 21 76727099 "The glory of great men should always be measured by the means they have used to acquire it." - Francois de La Rochefoucauld On Wed, Nov 5, 2008 at 1:31 PM, Arthur Leigh All

session timeout and session id

2008-11-05 Thread Arthur Leigh Allen
the user object from the database by using the unique session id. Then I could modify the user object and make it persistent again. Does anyone know a better way because I'm not fully satisfied with this solution, too? Best regards! Allen

Re: Disabling 'back'/'next' web browser button usage in application

2008-10-29 Thread Richard Allen
I think a better solution is to make the browser's back/forward buttons have the same effect as clicking on the 'Previous Question'/'Next Question' buttons. If you put effort into making that work instead of putting your effort into trying to disable the browser's back/forward buttons, then you wil

Re: Wicket and Ext JS integration

2008-10-23 Thread Richard Allen
have any suggestion where the project could be hosted? Google code? > and any idea about the licence? > > > Thank you, Paolo > > > On Thu, Oct 23, 2008 at 2:19 PM, Richard Allen <[EMAIL PROTECTED] > >wrote: > > > Paolo, > > > > Is this an open sou

Re: Wicket and Ext JS integration

2008-10-23 Thread Richard Allen
Paolo, Is this an open source effort? What version of ExtJS are you using? If we were to choose to go with Wicket, we would be willing to contribute. Thanks, Richard Allen On Wed, Oct 22, 2008 at 10:20 AM, Paolo Di Tommaso < [EMAIL PROTECTED]> wrote: > I'm working on a wicket-e

Re: Wicket and Ext JS integration

2008-10-23 Thread Richard Allen
d the effort, then that would help. The amount of work involved in integrating ExtJS 2.2 with Wicket is part of our new web framework evaluation criteria. Thanks, Richard Allen On Wed, Oct 22, 2008 at 2:05 PM, Nino Saturnino Martinez Vazquez Wael < [EMAIL PROTECTED]> wrote: > I though

Wicket and Ext JS integration

2008-10-22 Thread Richard Allen
/index.php/extjs-integrationm, which is version 0.1.0, published in February 2008. Is the wicket-tools-extjs project in active development or was that project abandoned? Is there any other significant work undergoing to integrate Wicket and Ext JS? Thanks, Richard Allen

Re: Wicket community traction / Wicket Web 2.0 experience

2008-10-21 Thread Richard Allen
with sites using Wicket: http://cwiki.apache.org/WICKET/sites-using-wicket.html Also, the Wicket in Action forward by Jonathan Locke mentions that IBM, TomTom, Nikon, VeriSign, Amazon, and SAS use Wicket. Thanks, Richard Allen On Tue, Oct 21, 2008 at 11:49 AM, <[EMAIL PROTECTED]> wrote: >

Re: Wicket versus Spring MVC

2008-10-20 Thread Richard Allen
Joel, What advantage does Tapestry 5 provide you over Wicket for your front office pages? Thanks, Richard Allen On Sun, Oct 19, 2008 at 8:17 AM, Joel Halbert <[EMAIL PROTECTED]> wrote: > We're actually using two web frameworks in our application, depending on > the type

Wicket versus Spring MVC

2008-10-16 Thread Richard Allen
applications we produce. My colleague emailed the instructor from SpringSource and asked what he thought of us migrating to Wicket instead of Spring MVC. His response is below with my comments inlined. I would appreciate any convincing comments from Wicket experts. Thanks, Richard Allen Rich, Some

Re: AjaxRequestTarget is null in Internet Explorer 6

2008-09-22 Thread Arhur Leigh Allen
Jan Kriesten wrote: > > > >>> I´m struggeling with the AjaxFallbackLink the target object is null, if >>> it >>> runs to the onClick() method. > >> I still have that problem and why is sb. responding to another >> thread... > > You should check the documentation what 'null' means on a