Re: Custom PageMap

2008-08-21 Thread Erik van Oosten
as a part of one transaction Erik van Oosten wrote: John, if you keep your conversation data in the component (as a java field), and you work with listeners in that component (e.g. with a Link), that data is available in the listener (e.g. Link's onClick callback method). While coding

Re: I have some Wicket based opportunities/jobs if you're interested.

2008-08-21 Thread Erik van Oosten
Cristi Manole wrote: Please share more details like when the project is planned to start, how many hours per day, etc. But not on this list please. Regards, Erik. - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Changing components before rendering

2008-08-24 Thread Erik van Oosten
There is. As you noticed you can change any property you like /before/ the render phase. Another way to put metadata on components is annotations. This is for example used for security type of things. You can intercept the creation and rendering of each component in Wicket (in your

Re: Assert that all models are detached at the end of the request?

2008-08-31 Thread Erik van Oosten
-to-day-stuff.blogspot.com/, but must have searched for the wrong thing (transient, entity, SerializableChecker)... -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Wicket, HTML or XHTML ?

2008-09-11 Thread Erik van Oosten
regards, P. Goiffon -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Localized string retrieved with a warning message

2008-09-18 Thread Erik van Oosten
Are you sure that message is coming from this code? This code looks quite alright to me (though you could replace StringResourceModel(x, this, null) with ResourceModel(x), and change the parameter type to IModelString). Regards, Erik. Azzeddine Daddah wrote: Thanks Michael, I did but

Re: error handling and redirect (was: how to logout and redirect)

2008-09-18 Thread Erik van Oosten
It mainly depends on whether you would like to allow a refresh, and how sensitive you are to nice URLs. The key difference is that the user will see that he/she lands on another URL when you called setRedirect(true). After that a refresh will reload the error page. With redirect set to false,

Re: Transactions..... again!

2008-09-19 Thread Erik van Oosten
Ryan, Here is how I do this with Spring: http://day-to-day-stuff.blogspot.com/2008/08/java-transaction-boundary-tricks.html Its not as pretty as Salve's @Transactional but just as effective. Regards, Erik. Ryan wrote: Aside from these ideas, has anyone used a different method for

Re: Need help fixing bug #1816

2008-09-24 Thread Erik van Oosten
* platforms. Tomcat fails silently, which is even worse. Gili -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: isVisible Problem

2008-09-25 Thread Erik van Oosten
Overriding isVisible can be quite evil. The problem is that it is called also in the detach phase. When isVisible depends on the model, your model is often reloaded! There are 2 solutions: - within method isVisible cache the result, clear the cache in the onDetach. - (recommended) don't

Re: Empty PageParametyers when using HybridUrlCodingStrategy

2008-09-25 Thread Erik van Oosten
You should use one of the other HybridUrlCoding strategies. E.g. the IndexedHybridUrlCodingStrategy. If you need an MixedParamHybridUrlCodingStrategy, I can mail it to the list. Regards, Erik. itayh wrote: Hi, I am using HybridUrlCodingStrategy for my url's (I need that the mount point

Re: Nice urls in markup

2008-09-26 Thread Erik van Oosten
that. Could anyone try to help, please? Thanks, Liz - Original Message - From: Erik van Oosten Sent: 25/09/08 02:39 pm To: users@wicket.apache.org Subject: Re: Nice urls in markup Use a HybridUrlCodingStrategy to mount your pages. This will make ajax request link

Re: Form GET doesn't call onSubmit method

2008-10-02 Thread Erik van Oosten
commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Wicket talk at NL-JUG's J-Fall

2008-10-09 Thread Erik van Oosten
Just to let you know. My talk 'Effective Wicket', targeted at starting Wicketeers has been accepted on NL-JUG's J-Fall. http://www.nljug.org/jfall/ Regards, Erik. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: Empty PageParametyers when using HybridUrlCodingStrategy

2008-10-15 Thread Erik van Oosten
)/myapp/iframe/MyFrame/param_value))); But then the url is not found since I define in my app: mount(new IndexedHybridUrlCodingStrategy(/iframe/MyFrame, MyFrame.class)) ... The param is runtime value and I can not know it when creating my app. -- Erik van Oosten http://www.day-to-day

Re: Empty PageParametyers when using HybridUrlCodingStrategy

2008-10-15 Thread Erik van Oosten
IndexedHybridUrlCodingStrategy(/iframe/MyFrame, MyFrame.class)); I tried also for the url mounting: mount(new HybridUrlCodingStrategy(/iframe/MyFrame, MyFrame.class)); In all cases the params inside the constructor of MyFrame class has no values in them (size = 0) Thanks, Itay -- Erik van Oosten http

Re: Empty PageParametyers when using HybridUrlCodingStrategy

2008-10-16 Thread Erik van Oosten
. Is there another way? Thanks alot, Itay -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Empty PageParametyers when using HybridUrlCodingStrategy

2008-10-17 Thread Erik van Oosten
the parameters to the iframe url. I am not even getting to MyFrame constructor. Any Idea? -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: Pages or components... how do u decide?

2008-10-17 Thread Erik van Oosten
it anywhere in your application. Alex -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: tomcat doesnt work with wicket

2008-10-17 Thread Erik van Oosten
is the question.. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: tomcat doesnt work with wicket

2008-10-17 Thread Erik van Oosten
a newbie. So is the question.. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: inmethod / grid website?

2008-10-21 Thread Erik van Oosten
be the wrong place to ask, but anyways. What happened to the inmethod/ grid web site? http://www.inmethod.com/ is showing the tomcat welcome page for some time now. Did it move? Regards, Martin -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: generate javascript file together with html page

2008-10-27 Thread Erik van Oosten
FooPage.js to the header and then I want a request to FooPage.js to go back to FooPage so it creates the javascript file by using the same hierarchy of components. Ittay -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: generate javascript file together with html page

2008-10-27 Thread Erik van Oosten
to me. Regards, Erik. Ittay Dror wrote: Erik van Oosten wrote: Sound like what you need is a DynamicWebResource. yes, sound like this can do it. but can i start a rendering cycle here so that i get the bytes required at the end? -- Erik van Oosten http://www.day-to-day

Re: no title in ExternalLink

2008-10-28 Thread Erik van Oosten
Hehe, that's a nice one too. James Carman wrote: Perhaps just a helper method somewhere? public AbstractLink addTitle(AbstractLink link, IModelString titleModel) { link.add(new AttributeModifier(title, true, titleModel)); return link; } -- Erik van Oosten http://www.day-to-day

Re: Wicket and URLs

2008-10-29 Thread Erik van Oosten
Hello S D, This might interest you: http://day-to-day-stuff.blogspot.com/2008/10/wicket-extreme-consistent-urls.html Note there are still some limitations. Your milage may vary. Regards, Erik. S D wrote: Hi, I was browsing through examples, it looks very impressive but there's a thing

Re: Wicket and URLs

2008-10-29 Thread Erik van Oosten
i dont think this is a good idea. -igor -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Are there any open-source webapplications based on Wicket?

2008-11-02 Thread Erik van Oosten
http://cwiki.apache.org/WICKET/sites-using-wicket.html So far I have not found a single Wicket-based website or project. Is there none so far or just hidden somewhere on the net ? - To unsubscribe, e-mail: [EMAIL

Re: Broken pipe

2008-11-02 Thread Erik van Oosten
van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Broken pipe

2008-11-02 Thread Erik van Oosten
: 008d 2aaac71a8280 0x4082dd28: 2aaac74ed578 00194082dd50 ** Martin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Erik van Oosten http://www.day

Re: Handling exceptions during render

2008-11-03 Thread Erik van Oosten
, (WebResponse) response) { @Override public Page onRuntimeException(final Page page, final RuntimeException e) { //do something return null; } } } [/CODE] Alex Objelean -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: Browser file download complete callback

2008-11-03 Thread Erik van Oosten
Not sure about the close method, but you could always wrap the outputstream and count the number of streamed bytes. Regards, Erik. bjolletz wrote: Is it at all possible to get a callback when a user is finished downloading the bytearray? -- Erik van Oosten http://www.day-to-day

Re: Handling exceptions during render

2008-11-03 Thread Erik van Oosten
it doesn't close tags (i.e. advance in the markup stream?) after the exception is thrown in a child component, and I still get an error page :( renderComponent(MarkupStream) is final too, it seems that all doors are closed and locked... -- Erik van Oosten http://www.day-to-day

Re: Referencing Request in Spring bean definitions

2008-11-03 Thread Erik van Oosten
Creation of custom sessions is described here: http://cwiki.apache.org/WICKET/newuserguide.html#Newuserguide-CustomSessions I do think you can create a session through Spring. Regards, Erik. Ryan O'Hara wrote: Hello, Is there anyway to reference Wicket's request object in the Spring bean

Re: IDataProvider Implementation.

2008-11-11 Thread Erik van Oosten
] -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: wicket prepends unnecessary ../ before href/src html element attributes

2008-11-11 Thread Erik van Oosten
/*/url-pattern dispatcherREQUEST/dispatcher dispatcherINCLUDE/dispatcher /filter-mapping Is this because of any wicket specific restriction or something else? Anirban -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: Question on PageMap

2008-11-11 Thread Erik van Oosten
? -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Quickstart 1.4-rc1 exception

2008-11-14 Thread Erik van Oosten
(VelocityEngine.java:116) Is this a known problem? I am doing something wrong? Maven version was 2.0.8, an upgrade to 2.0.9 did not help. Regards, Erik. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: Quickstart 1.4-rc1 exception

2008-11-14 Thread Erik van Oosten
Tried it with several other Wicket releases 1.3.5 and 1.3.3 (Maven 2.0.9) but I get the same error. Regards, Erik. Erik van Oosten wrote: Hi, I want create a quickstart to demonstrate a potential bug in 1.4-rc1. However if I choose that release I get the following exception. [INFO

Re: Quickstart 1.4-rc1 exception

2008-11-14 Thread Erik van Oosten
PM, Erik van Oosten [EMAIL PROTECTED] wrote: Tried it with several other Wicket releases 1.3.5 and 1.3.3 (Maven 2.0.9) but I get the same error. Regards, Erik. Erik van Oosten wrote: Hi, I want create a quickstart to demonstrate a potential bug in 1.4-rc1. However if I choose

Re: Quickstart 1.4-rc1 exception

2008-11-14 Thread Erik van Oosten
It appears that my Maven repository (artifactory) is not functional anymore. Somehow its empty. I'll switch to central for a moment. Sorry for the hassle. Regards, Erik. Erik van Oosten wrote: Sorry, I do not understand your suggestion. I am running in a new shell

Re: Unable to load Wicket app in hosting provider

2008-11-16 Thread Erik van Oosten
Wicket-based application will absolutely not load in the shared hosting environment. I'm trying out GoDaddy's Java Web hosting that uses Java 1.5 and Tomcat 5.0.27. I have this same setup on my box and deploying my Wicket 1.3.4-based application works -- Erik van Oosten http://www.day

Re: Removing an element from ListView with AjaxFallbackButton

2009-08-17 Thread Erik van Oosten
Perhaps you can use the list editor: http://wicketinaction.com/2008/10/building-a-listeditor-form-component/ Regards, Erik. Major Péter wrote: Any help would be appreciated. Thanks Regards, Peter -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: Absolute urls in forms

2009-08-22 Thread Erik van Oosten
.) Regards, Erik. Igor Vaynberg wrote: thats funny, we worked really had to make all urls relative because it would make it a lot easier to work with proxies... :) -igor -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: Absolute urls in forms

2009-08-25 Thread Erik van Oosten
I added a patch in Jira. Regards, Erik. Erik van Oosten wrote: Anyways, you can make all URLs absolute by following the hints in https://issues.apache.org/jira/browse/WICKET-1974. You'll need to patch Wicket as the issue is not yet solved. (I really should make the patch, its

Re: Choose one

2009-08-27 Thread Erik van Oosten
to display 'Choose one' if another item has been selected? -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: London Wicket Event, Saturday November 21st

2009-10-11 Thread Erik van Oosten
Igor Vaynberg wrote: until i see some video proof i will continue to operate under my assumption - there are no presentations, this is just an excuse to get out of the house and go to a pub :) -igor For sure, they /will/ visit a pub... -- Erik van Oosten http://www.day-to-day

Re: Howto test redirect to non-wicket base page

2009-10-12 Thread Erik van Oosten
); } void redirectTo(String url) { getRequestCycle().setRedirect(true); getRequestCycle().setRequestTarget(new RedirectRequestTarget(url)); } lastRenderedPage is null so i can't add my assertion to this. Cheers Per -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: [1.4.3] RequestUtils.toAbsolutePath() skips the last value

2009-11-29 Thread Erik van Oosten
/quickstart/app/TestPage/a/b/ , correct BUT , if I open http://foobar:8080/quickstart/app/TestPage/a/b it shows : http://foobar:8080/quickstart/app/TestPage/a , WRONG -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: Session stealing with wicket-auth-roles

2009-12-02 Thread Erik van Oosten
from the URLs, too: http://seamframework.org/Documentation/RemovingJSESSIONIDFromYourURLsAndFixingScache -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: URL Rewriting in Wicket

2009-12-14 Thread Erik van Oosten
and then redirect the user to the appropriate wicket page. What is the recommended way to do this in wicket? Make a hook into the WebApplication.newRequestCycle() method? thanks for your help, andr -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: How to close a Wicket application?

2010-01-07 Thread Erik van Oosten
to stop a Wicket application from inside the application itself (that is suicide)? Best regards, giovanni -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr

Re: Wicket architecture diagram?

2009-03-26 Thread Erik van Oosten
someone had already done something similar as part of a presentation somewhere. -- Jeremy Thomerson http://www.wickettraining.com -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e

Re: Dutch Wicket workshop?

2009-03-26 Thread Erik van Oosten
be arranged if necessary. We're a small foundation, so we can only offer a link on our sponsor page in recompense. Regards, Linda -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users

Re: Wicket and (or) restlet

2009-04-01 Thread Erik van Oosten
. Have you used this framework? Can wicket restlet work together? Have you had any experience with it? Thank you! -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr

Re: Wicket and (or) restlet

2009-04-03 Thread Erik van Oosten
adopted after Wicket. /Casper -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: Extending wicket for non webapp implementations

2009-04-06 Thread Erik van Oosten
it. -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Wicket in Action vs the other main books

2009-04-10 Thread Erik van Oosten
advise, David. -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: updating PanelCachingTab

2009-04-16 Thread Erik van Oosten
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: Scheduled Wicket courses (Europe) and jWeekend's Global Partner Program

2009-04-20 Thread Erik van Oosten
], are planning to deliver our course in Amsterdam on Jun10-11(Thu-Fri), Sep28-29(Mon-Tue) and Nov30-Dec1(Mon-Tue), all TBC. JTeam will announce full details of the Wicket training in Holland but in the meantime, please feel free to contact us [0] for more information and reservations. -- Erik van

Re: Custom URL Handling

2009-04-20 Thread Erik van Oosten
strategy instead? Matt -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Annotations and AOP in Wicket

2009-04-21 Thread Erik van Oosten
for annotations support in the upcoming wicket versions 1.4 or 1.5? Moreover does wicket promote the use of AOP in the development of web applications Thanks, munna. -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: absolute urls in form action

2009-04-27 Thread Erik van Oosten
server from the Wicket application. I realise we probably could do some url rewriting on the CMS side, but it would be nice if there was a simple way to get absolute urls directly in Wicket. /Steen -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: Apache Tomcat CSS

2009-05-13 Thread Erik van Oosten
I always get this for a new app when I run/build it from Eclipse or IntelliJ. Both default to exclude resources from the java packages. Build with Maven (change the pom or use quickstart to start with a correct pom) and the file should be there. Regards, Erik. Tomáš Mihok wrote: Hi

Re: Apache Tomcat CSS

2009-05-14 Thread Erik van Oosten
Nice, I didn't know you could use negatives there. Erik. James Carman wrote: You can set up IntelliJ to not exclude them. Just go to the compiler properties for your project and set the exclude to something like !?*.java. 2009/5/13 Erik van Oosten e.vanoos...@grons.nl: I always get

Re: Newbie-Problem: Wicket/Maven/Jetty: FileNotFoundException?

2009-05-15 Thread Erik van Oosten
Note that this is a maven problem. Apparently maven does not use the correct 'home' directory. You can override the home directory set by setting an environment variable. I think its called M2_REPO. Regards, Erik. Henrik schreef: I am very new to the Java-World and want to make a web

What is the correct way to include the Wicket DTD?

2009-05-19 Thread Erik van Oosten
is the correct way to include the DTD? Regards, Erik. -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: [announce] WicketStuff Artwork new release

2009-05-27 Thread Erik van Oosten
Hi Nino, Nice stuff. Do you have a link to liquid? Its not a nice google word. Regards, Erik. nino martinez wael wrote: Hi Guys Just wanted to tell that theres a new release of wicketstuff artwork out. This time including niftycornerscube...

Re: MultiLineLabel and alot of P

2009-06-03 Thread Erik van Oosten
Hi Daniele, Probably the best action is to look at the source of MultiLineLable, copy it to your own sources and adapt it at will. This approach has 2 advantages: 1) it keeps the wicket library small and focused, 2) you can code it exactly the way you want. Regards, Erik. Daniele

Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-06-10 Thread Erik van Oosten
/path1/path2/param1/value1 and param1/value1 might expose some business logic or security related concerns. in the same manner as /path1/path2/param1=value1 would cvl Johan Compagner wrote: why would you encrypt the hybrid? -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: AjaxLink and Form Validation

2009-06-10 Thread Erik van Oosten
called once I click on any one of the AjaxSubmitLinks in the form :-( -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail

Re: AjaxLink and Form Validation

2009-06-10 Thread Erik van Oosten
, Jade On Thu, Jun 11, 2009 at 12:41 AM, Erik van Oosten e.vanoos...@grons.nlwrote: Jade, There was a bug regarding this in one of the 1.4 rc's. I think it was rc2. Could upgrade to a newer 1.4 version and try again? Regards, Erik. Jade wrote: Guys, I am still struggling

Re: AjaxLink and Form Validation

2009-06-11 Thread Erik van Oosten
Erik if my team and manager agrees for it :-) Otherwise, did you(guys) find any thing wrong in my code? or anything thats fishy?? I am a beginner to wickets, so its obvious I must have made some mistake :-s On Thu, Jun 11, 2009 at 12:58 AM, Erik van Oosten e.vanoos...@grons.nlwrote: -- Erik

Re: [OFF TOPIC] Java desktop applications

2009-06-12 Thread Erik van Oosten
Major Péter wrote: I didn't actually used it, but this could be helpful for you: http://www.jformdesigner.com/ I have used JFormDesigner extensively, it is an excellent product. Simle, yet it has all layout features you need. Costs are not high. Works with open source JFormLayout layout

Re: [OFF TOPIC] Java desktop applications

2009-06-12 Thread Erik van Oosten
I have some time ago. It doesn't get much priority from Spring Source so don't expect miracles. The main author is mostly tied up on Spring Webflow. Unrelated: I forgot to mention that you should absolutely use Glazed Lists when you're doing a Swing project. Regards, Erik. Jeremy

Re: AjaxFormSubmitBehavior throws an NullPointerException when the getForm() is overridden

2009-06-17 Thread Erik van Oosten
Please file an issue in Jira, preferably with a quickstart to demonstrate the problem. A patch would be even better of course. Regards, Erik. zoltan luspai wrote: Hi, I have an AjaxFormSubmitBehavior where I don't pass the form parameter in the constructor, but have overridden the

Re: Creating a form dynamically

2009-06-19 Thread Erik van Oosten
I going about this all wrong? Is there any way I can receive a FormComponent and then change its wicket:id so that it will always be component in my ListView? Or is there a solution for this problem already? Much thanks for any advice. -- Erik van Oosten http://www.day-to-day

Re: Feedback Messages Not Getting Displayed When Using AjaxSubmitLink

2009-06-19 Thread Erik van Oosten
to fix this? -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: redirect to mailto

2009-06-22 Thread Erik van Oosten
You can use ExternalLink with a mailto: url. Regards, Erik. Aaron Dixon wrote: How do I redirect to a mailto: url? This doesn't seem to work: final String url = mailto:...;; getRequestCycle().setRequestTarget(new IRequestTarget() {

Re: redirect to mailto

2009-06-23 Thread Erik van Oosten
Well, then its time to whip up some javascript! E.g.: new AjaxLink(..) { public void onClick(target) { target.addJavascript(document.url = 'mailto:'); } } Completely out of my head so you'll have to find the exact method names yourself ;) Regards, Erik. On Mon, 22 Jun 2009

Re: Page Expire

2009-06-23 Thread Erik van Oosten
. Please give me the replay if any one know this . Thanks in advance. Regards, Srinivasa Raju CH. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: invoking an ajax refresh

2009-06-30 Thread Erik van Oosten
Hi Daniel, Please investigate AjaxSelfUpdatingTimerBehavior. I have never used it myself so I can not help you further then that. Regards, Erik. Daniel Dominik Holúbek wrote: hello everybody,i am wondering how to invoke refresh of a component with ajax. the situation: i have a listener

Re: WicketSessionFilter setup

2009-07-04 Thread Erik van Oosten
Any hints on why you're asking? Mathias Nilsson wrote: Whats wrong with this setup ?xml version=1.0 encoding=ISO-8859-1? web-app xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi= http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLoc

Re: img tags from external src slow down my page

2009-07-04 Thread Erik van Oosten
Hi Jim, You should do 1 in any case :) Point 2 is not so hard. Just download the file with HttpClient or the like. While you're reading from the stream you have to count bytes. Put this in a IValidator and attach it to the imageUrl textbox. If you go for point 3 then note that not all types

Re: WicketSessionFilter setup

2009-07-05 Thread Erik van Oosten
Mathias, This sounds similar to what I wrote on http://cwiki.apache.org/WICKET/springbean-outside-wicket.html. Its not clear from the javadoc, but I suspect that WicketSessionFilter also requires access to a surrounding normal Wicket filter. If I had access to the code of WicketSessionFilter

Updating an inmethod grid, looking for hints

2009-07-11 Thread Erik van Oosten
, the grid should respond to modelChanged(). But I have still no clue what should be in that method. Regards, Erik. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr

Re: Updating an inmethod grid, looking for hints

2009-07-11 Thread Erik van Oosten
DataGrid. DefaultDataGrid mostly. Erik. Matej Knopp schreef: are you using treegrid or datagrid? -Matej On Sat, Jul 11, 2009 at 1:43 PM, Erik van Oostene.vanoos...@grons.nl wrote: If I remember correctly that only updates the existing items and ignore new items. I am looking for a way

Re: MixedHybridUrlCodingStrategy wanted

2009-07-12 Thread Erik van Oosten
(forgot the name) contains it. Regards, Erik. Vladimir Kovalyuk wrote: Is there a worked combination of HybridUrlCodingStrategy and MixedParamUrlCodingStrategy? What is missed in the latter is ability to stay bookmarkable after reaction on actions. -- Erik van Oosten http://www.day

Re: MixedHybridUrlCodingStrategy wanted

2009-07-13 Thread Erik van Oosten
to study what strategies do internally and implement and test mixed solution. I hoped someone have already tried that. Unfortunately I didn't find anything by google and nabble so I posted the question here. If you could point me some old discussion I'd appreciate. Erik van Oosten wrote

Re: intercept security check in wicket-auth-roles

2009-07-13 Thread Erik van Oosten
...@wicket.apache.org - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: MixedHybridUrlCodingStrategy wanted

2009-07-13 Thread Erik van Oosten
Please do :) Erik. Vladimir K wrote: Thanks very much! Why not suggest it as a patch to wicket core? Erik van Oosten wrote: Hi Vladimir, You are right. Now I look at it, it is clearly more complex then I remembered. You can get my version here: http://pastie.org/543892 Regards

Re: model detached many times

2009-07-13 Thread Erik van Oosten
. Is that something to worry about, or is it just because the detach method is called for each component that points to this model? Ian. -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail

Re: Updating an inmethod grid, looking for hints

2009-07-13 Thread Erik van Oosten
Hi Matej, I just got a hint from a colleague: it might has something to do with returning the wrong number of items in the dataprovider query. We probably return UNDEFINED too often. I'll look further into it. Regards, Erik. Erik van Oosten wrote: DataGrid. DefaultDataGrid mostly

Re: what is wicket

2009-07-14 Thread Erik van Oosten
Hello Gerald, You can find much of this kind of information on http://wicket.apache.org. Regards, Erik. On Tue, 14 Jul 2009 18:21:16 +0530, Gerald Fernando gerald.anto.ferna...@gmail.com wrote: Hello Friends, Am Gerald, new to wicket. can anyone say about wicket and advantages over

Re: how to strip wicket tags for particular component

2009-07-20 Thread Erik van Oosten
); } -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Spring and Wicket - is it worth it?

2009-07-23 Thread Erik van Oosten
. Can anyone give me a concise explanation of how the advantages of Spring are worth introducing a new layer into my applications? Dane -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail

Re: Updating an inmethod grid, looking for hints

2009-07-23 Thread Erik van Oosten
is called. Therefore any changes to the grid (like rowCount) are not used. Regards, Erik. Erik van Oosten wrote: Hi, How can I trigger an inmethod grid to do a /complete/ update of itself? The only thing that I see is markAllDirty(). That will update the items currently in the list

Re: Updating an inmethod grid, looking for hints

2009-07-23 Thread Erik van Oosten
05:20:06 -0700 (PDT), Erik van Oosten e.vanoos...@grons.nl wrote: Hi Matej, I finally found the bug. When you are using a DefaultDataGrid it adds a PagingToolbar. PagingToolbar overrides isVisible. In isVisible the total row count is determined, this will cache the query result

Re: [OT] Continue to support Wicket 1.2 in WicketForge

2009-07-25 Thread Erik van Oosten
. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Questions about Wicket sessions

2009-07-26 Thread Erik van Oosten
David, Please note Sessions are not thread-safe in Wicket context means that the Session /object/ is not thread-safe. Note that requests that fall within a session (except for resources) are handled serially. Only when you use session clustering this guarantee can not be made. 1. It depends

<    1   2   3   4   >