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: 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

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: 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

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: 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: 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: 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: 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: 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: [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: 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: 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: 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: [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...

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: 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

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: 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: 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: 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: 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: 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: 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: 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 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: 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 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: Xml models [Was: Making wicket work with Dynamically created html]

2009-03-25 Thread Erik van Oosten
, Erik van Oosten e.vanoos...@grons.nl wrote: Interesting. I think we have something similar. We do stuff like new TextField(/addresses/address[1]/street) and this will automatically bind the text field to a node in the XML document that was attached to the form. Regards, Erik. Jan Kriesten

Xml models [Was: Making wicket work with Dynamically created html]

2009-03-24 Thread Erik van Oosten
that with XML specifying the form and having a ElementModel binding the form elements to JDOM nodes. Best regards, --- Jan. -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr

Re: Why are we top-posting...

2009-03-15 Thread Erik van Oosten
I don't even read bottom-posts. All that scrolling gives me RSI. Regards, Erik. Anton Veretennikov wrote: Those who receive first part of e-mail through sms message are very thankful if valuable part is on top. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: Managing Pagemaps

2009-03-15 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: Generics question

2009-03-13 Thread Erik van Oosten
) { ... } // Subgenre extends DomainObject public class Subgenre extends DomainObject{ ... } The complaint is: The constructor SubgenreFieldSwitchPanel(String, IModelListSubgenre) is undefined. Thanks, Linda -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: Security in a Spring Wicket layered application

2009-03-08 Thread Erik van Oosten
there as well as Swarm. But I don't know which will meet our needs and which will most likely be an option to us when we later move to Wicket 1.4 or a higher version. Best regards, Kent -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: Expected close tag for wicket:link ??

2009-03-05 Thread Erik van Oosten
anyone know what causes this error? ERROR org.apache.wicket.RequestCycle - unexpected exception when handling another exception: Expected close tag for wicket:link -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: MixedParamUrlCodingStrategy and too many path parts

2009-03-04 Thread Erik van Oosten
what HTTp requests users are making to the site to see where this is coming from? Thanks, Jason -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Why is BookmarkablePageLink generified?

2009-03-02 Thread Erik van Oosten
BookmarkablePageLink extends LinkVoid ? 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

Re: [vote] In Wicket 1.4 and onwards, remove widening from the list of choices model in DropDownChoice, changing it from IModelList? extends Foo to IModelListFoo

2009-03-01 Thread Erik van Oosten
[X] Yes, change the DropDownChoice constructor to take the choices list as IModelListT or ListT without the wildcard Regards, Erik. -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e

Wicket and standardization (was: Wicket at ApacheCon EU'09 in Amsterdam)

2009-02-16 Thread Erik van Oosten
Please change the subject of this thread. Erik. -- 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: Intellij Idea Plugin Bounty

2009-02-13 Thread Erik van Oosten
Andreas Petersson wrote: Also make sure you have the Wicket DTD loaded in Intellij. i got the dtd, but where exactly in intellij can you associate the wicket dtd with xhtml. setup external resource did not work. Sorry, I can't look it up at home. Erik. -- Erik van Oosten http://www.day

Re: Intellij Idea Plugin Bounty

2009-02-12 Thread Erik van Oosten
on such an warning, you will get the option to add the attributes as custom attributes. Now it will even code complete them for you. Also make sure you have the Wicket DTD loaded in Intellij. Regards, Erik. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: mountBookmarkablePage changes delimiter of PageParameters

2009-02-10 Thread Erik van Oosten
); and the same urlFor result gives: myPage/id/123456789/ In my circumstances I cannot have slashes (legacy restriction) and must have the ?= style parameters but I still need the package to be hidden, how could I go about doing this? cheers, Steve -- Erik van Oosten http://day-to-day

Re: problem deploying quickstart application on tomcat+apache (mod_jk)

2009-02-09 Thread Erik van Oosten
to be directed to tomcat. Thanks Vicky -- 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: making a HTTP request directly in Wicket

2009-02-05 Thread Erik van Oosten
no control over timeouts potentially hanging your application. Is this still true? I found that at least in Java 6 there is URLConnection.setConnectTimeout(int) -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: Feedback Panel

2009-01-30 Thread Erik van Oosten
, but I am not sure). How to do this? -- 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: Feedback Panel

2009-01-30 Thread Erik van Oosten
: 6px; margin-bottom: 20px; padding: 0; width: 90%; } francisco On Fri, Jan 30, 2009 at 1:07 PM, Erik van Oosten e.vanoos...@grons.nl wrote: The HTML that is rendered by FeedBackPanel provides enough styling that you can do this with CSS. Regards

Re: Feedback Panel

2009-01-30 Thread Erik van Oosten
Well, I am assuming you want either a numbered list, or no bullets at all. If you want something else, you are on your own (copy paste FeedbackPanel and tweak the copy). Look at the Wicket examples to see some CSS customization. Regards, Erik. Erik van Oosten wrote: Again, change

Re: Is there a way to be notified when a tab in a TabbedPanel is selected?

2009-01-29 Thread Erik van Oosten
this? Thanks, Zhubin -- 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: Architectural dilemma: Wicket + REST (JSR311)

2009-01-29 Thread Erik van Oosten
to change something in future. Thanks. -- 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: Is there a way to be notified when a tab in a TabbedPanel is selected?

2009-01-29 Thread Erik van Oosten
Yes, unless you use the PanelCachingTab decorator. Erik. Zhubin Salehi wrote: So every time a tab is selected, a new instance of that panel will be created? -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: Is there a way to be notified when a tab in a TabbedPanel is selected?

2009-01-29 Thread Erik van Oosten
= 211211104202913141L; public Panel getPanel(String panelId) { return new PersonDetailTab(panelId); } })); -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: Embedding html from an external application

2009-01-25 Thread Erik van Oosten
to be included, and hence wouldn't be carrying the request parameters, cookies etc. Which i would have to figure out a way to pass-on/embed manually. Farhan. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ -- View this message in context: http://www.nabble.com/Embedding-html

wicket jmx panel

2009-01-22 Thread Erik van Oosten
Hello, I am interested in bringing the wicket-stuff's jmx panel up to date (that upgrade it to 1.4). How do I go about this? Regards, Erik. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe

Re: Logging from Wicket alone and together with Spring and Hibernate + my own code

2009-01-20 Thread Erik van Oosten
are doing your logging. It's a new area for me which I'm eager to improve myself in. Best regards, Kent -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Why you should not override isVisible

2009-01-16 Thread Erik van Oosten
... Martijn -- 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: skip item in populateItem of ListView

2009-01-16 Thread Erik van Oosten
/RepeatingView.html). Regards, Erik. Stephen Swinsburg wrote: Does RepeatingView or RefreshingView allow me to skip an item once inside populateItem() ? thanks. On 15/01/2009, at 8:46 PM, Erik van Oosten wrote: Perhaps it would be more natural to use RepeatingView (or RefreshingView

Re: Things I miss in Wicket

2009-01-16 Thread Erik van Oosten
core developpers hehe - that one already exists, too! : -- 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

Re: Why you should not override isVisible

2009-01-16 Thread Erik van Oosten
inside the method and the sql log shows multiple sqls were issued. I am running wicket 1.3.5. Sorry I could not provide sample to reproduce this. but I did see it happening. -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: Things I miss in Wicket

2009-01-16 Thread Erik van Oosten
--- Since wicket:component has some issues (e.g. HeaderContribution doesn't work) I build my own DynComponent some time ago (see my blog for details). Best regards, --- Jan. -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: Things I miss in Wicket

2009-01-16 Thread Erik van Oosten
it is deprecated. 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: Why you should not override isVisible

2009-01-16 Thread Erik van Oosten
Please don't turn the logic around. Caching is only needed because isVisible can be a performance hit. /If/ you want caching /then/ isVisible should not be called after detach as detach is needed to clear the cache. Regards, Erik. s...@meiers.net wrote: Ok, IMHO it's a bug that wicket

Re: Why you should not override isVisible

2009-01-16 Thread Erik van Oosten
caching isVisible() is not needed. Sven -- 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: Why you should not override isVisible

2009-01-16 Thread Erik van Oosten
Created an issue: http://issues.apache.org/jira/browse/WICKET-2025 Regards, Erik. Erik van Oosten wrote: Martijn, I just went through the source (1.4-rc1) to trace a detach manually and find suspect callers of isVisible. I found none during detach, but I did find one call to isVisible

Why you should not override isVisible

2009-01-15 Thread Erik van Oosten
this behavior in Wicket 1.3 (1.3.3 I think). If it works differently now, I would be very glad to withdraw this recommendation. Regards, Erik. -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail

Re: Where to process PageParameters

2009-01-15 Thread Erik van Oosten
Michael, I answered on another thread. Regards, Erik. Michael Sparer wrote: Yepp, I also didn't have problems with it as - you're right - I took it at face value without thinking about it too much. I thought to avoid problems when the traffic of our apps grows and/or explodes I'll

Re: Why you should not override isVisible

2009-01-15 Thread Erik van Oosten
talking about in this post and was wondering if you have an english-speaking commented one available ? Nice work ! Regards, Pierre Goupil -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail

Re: Why you should not override isVisible

2009-01-15 Thread Erik van Oosten
* components should be detached regardless of their visibility. Martijn -- 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: skip item in populateItem of ListView

2009-01-15 Thread Erik van Oosten
(and making sure none of its content is output)? thanks, Steve -- 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: Twenty Six Wicket Tricks

2008-12-30 Thread Erik van Oosten
before the fixed parts (like /{language}/products/{productid}). Regards, Erik. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: [OT] Merb-Rails Merge

2008-12-24 Thread Erik van Oosten
applications in the enterprise, What a good joke !! -- 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: Filtering data in DataTable

2008-12-22 Thread Erik van Oosten
if values selected to be shown in DataTable should be bigger, lesser or equal to the entered/chosen value? -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Multi-tap operations in Wicket

2008-12-22 Thread Erik van Oosten
: This effects all the Wicket pages in the application, right? Seam folks advertise this feature as one of the gems of Seam framework, why Wicket doesn't shed more light on it? Common Wicket, no need to be humble this time :) -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: Multi-tap operations in Wicket

2008-12-22 Thread Erik van Oosten
?) a conversation)? Well, yes, it does http://wicketstuff.org/wicket13doc/org/apache/wicket/settings/IPageSettings.html Multi-window/tap isn't the gem of Seam, one of them :) We need to do more marketing for wicket guys:ninja: Erik van Oosten wrote: Apart from letting you guess what a page map

Re: Multi-tap operations in Wicket

2008-12-22 Thread Erik van Oosten
enough to be discarded... Best, Ernesto [1]-http://wicket.apache.org/features.html -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: Dynamic Simple (html) Components

2008-12-20 Thread Erik van Oosten
Hi Mito, Basically you are asking for Label. Label can generate anything you want. Look at the source of Label for inspiration if you need more customization.1 Also take a look at TextTemplate. There is also a FreeMarker version, I think its in wicketq-extra. Regards, Erik. mito

Re: Redirect to mounted page programmatically

2008-12-18 Thread Erik van Oosten
by requestcycle is not working because i firstly need a responsepage. But how should i get it by a MountPointId? A global registry is not nice in my eyes. Would be nice if someone can help me out here. thanks Per -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: Javascript call to wicket

2008-12-16 Thread Erik van Oosten
to have problems with it. Have you run it also in ie? Thanks, Itay Erik van Oosten wrote: I just finished an experiment with something like that. Its still ugly and very static, but here is my code. In the HTML header the function you can call from Flash: function(someValue) { var

Re: LoadableDetachableModel in Listview

2008-12-08 Thread Erik van Oosten
] wrote: Hi James, How does this work with a Hibernate-managed object? Did you test it with Hibernate? -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: resource mapping and dot in url

2008-11-19 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: RES: FileUploadField usage changed in 1.4 rc-1?

2008-11-19 Thread Erik van Oosten
Yeah, I run into the same thing. Just pass FileUploadField an empty model: new ModelFileUpload() Regards, Erik. Bruno Cesar Borges schreef: Yes, you need to set a Model object into FileUploadField. :-) Bruno -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

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

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: 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]

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

<    1   2   3   4   >