Re: [DISCUSS] Security Frameworks

2012-10-22 Thread Erik van Oosten
framework [ ] I use Shiro [ ] I use Spring Security [ ] I use WASP/Swarm [ ] Other (please specify) And don't forget the why. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr

Re: Efficiency of 1.5 MountMapper weighted/matching algorithm

2011-10-18 Thread Erik van Oosten
lived object cost nothing. The gc can easily handle millions per second. In other words: don't add caching unless you are willing to measure the throughput gains (on the intended target systems). Regards, Erik. -- Erik van Oosten http://day-to-day-stuff.blogspot.com Op 17 okt. 2011, om 22:06

Re: introducing wicket:for attribute

2011-07-14 Thread Erik van Oosten
Its not @literal that removes the linebreaks. If you combine it with pre it works. (No need to add code as well.) *pre{@literal * label wicket:for=name * span class=label-textName/span: * /label * input wicket:id=name type=text/ * }/pre * Regards, Erik. Op 13-07-11 17:55, Igor Vaynberg

Re: introducing wicket:for attribute

2011-07-13 Thread Erik van Oosten
/wicket/markup/html/form/AutoLabelResolver.java?view=markuppathrev=1144589 1.4.x only for now, still needs to be forward-ported to trunk. feedback? -igor -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: internationalizing page title

2011-02-28 Thread Erik van Oosten
wrong? head meta http-equiv=Content-Type content=text/html; charset=UTF-8 wicket:head titlewicket:message key=login-page-title//title /wicket:head /head regards Josh -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: URL generation

2011-02-04 Thread Erik van Oosten
::IFormSubmitListener:: for posting a form. is there a way to make wicket create absolute URLs instead? cu uwe -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr

Re: [OT] Need Feedback from WicketForge users (IDEA plugin).

2010-12-14 Thread Erik van Oosten
this is not directly wicket related, please do not reply here. Thanks Minas. -- Sent from my SMTP compliant software Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: UrlRewrite rule and Wicket

2010-12-14 Thread Erik van Oosten
in all cases though... If there is a different way of doing url rewriting? If not, I consider it a bug in Wicket. Regards, Krzysztof Kowalczyk -- Sent from my SMTP compliant software Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: UrlRewrite rule and Wicket

2010-12-01 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 question

2010-12-01 Thread Erik van Oosten
Simply put them there with a Label. Regards, Erik. Op 01-12-10 18:26, 96silvia write: the problem is the hidden input values are coming from a wicket session. so if I use a non wicket form how do I get the values from a wicket session to the non wicket form? -- Erik van Oosten http

Re: StackOverflowError

2010-11-22 Thread Erik van Oosten
Label(userNameLabel, new Model(session.getUser ().getUserName(; How about this? final UserDTO dto = session.getUser(); CompoundPropertyModel cpm = new CompoundPropertyModel(dto); -- Sent from my SMTP compliant software Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: StackOverflowError

2010-11-22 Thread Erik van Oosten
(session.getUser ().getUserName(; How about this? final UserDTO dto = session.getUser(); CompoundPropertyModel cpm = new CompoundPropertyModel(dto); -- Sent from my SMTP compliant software Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: could not serialize the page java.lang.OutOfMemoryError: PermGen space

2010-10-14 Thread Erik van Oosten
to reproduce, please tell me can wicket cause memory errors for any reason ? I am using 1.4.8 -- Sent from my SMTP compliant software Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users

Re: Modular XHTML DTD for Wicket?

2010-09-28 Thread Erik van Oosten
compliant software 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: Setting Checked Boxes in CheckGroup

2010-09-23 Thread Erik van Oosten
] Sent: Thursday, September 23, 2010 10:57 AM To: users@wicket.apache.org Subject: Re: Setting Checked Boxes in CheckGroup im going to guess something is wrong with your model. hard to tell without a quickstart. -igor -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: announcing Granite - a Wicket-Scala-DB4O web application stack

2010-09-22 Thread Erik van Oosten
-mail: users-h...@wicket.apache.org -- 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: A bug in CryptedUrlWebRequestCodingStrategy

2010-09-16 Thread Erik van Oosten
fixed our problem though I won't guarantee that it hasn't introduced new ones. Hope this can get a better resolution. Regards, Bjørn Soldal -- Sent from my SMTP compliant software Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: Expiring pages in form submit and onAfterRender...

2010-07-27 Thread Erik van Oosten
Erik -- Sent from my SMTP compliant software 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: colocating wicket with servlets...

2010-07-26 Thread Erik van Oosten
create mounts for all bookmarkable pages but how can I control the paths of non-bookmarkable URLs. Should I create a separate request coding strategy decorator (like CryptedUrlWebRequestCodingStrategy) or is there an easier way? Cheers Erik -- Erik van Oosten http://www.day-to-day

Re: new feature in trunk and branch: Component#onConfigure()

2010-07-21 Thread Erik van Oosten
Excellent! Op 21-07-10 07:05, Igor Vaynberg wrote: another new callback added to 1.4/trunk that is aimed at making life easier when managing component states such as visibility, enabled, etc. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: new feature in trunk and branch: Component#onInitialize()

2010-07-13 Thread Erik van Oosten
commands, e-mail: users-h...@wicket.apache.org - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Sent from my SMTP compliant software Erik van

Re: non-bookmarkable pages with pageparameters?

2010-07-07 Thread Erik van Oosten
Muro -- Sent from my SMTP compliant software 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: Single inheritence in parts

2010-07-07 Thread Erik van Oosten
, without a whole mess of other issues. http://bit.ly/awiK6L -- 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: Single inheritence in parts

2010-07-07 Thread Erik van Oosten
generally means MANY PARENT, ONE CHILD (child inherits from multiple parents). Here there is only ONE PARENT MARKUP required and ONE CHILD markup. Maybe my perspective is not right. I'll search more material on this and educate myself. -- Erik van Oosten http://www.day-to-day

Re: Single inheritence in parts

2010-07-06 Thread Erik van Oosten
#Wicket1.5WishList-multiplychild%252Fextendinheritance 2-https://issues.apache.org/jira/browse/WICKET-1134 -- Sent from my SMTP compliant software Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail

Re: non-bookmarkable pages with pageparameters?

2010-07-06 Thread Erik van Oosten
based deliveryInfo object i have...? Best Regards Muro -- Sent from my SMTP compliant software Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: Wicket Sessions and Load Balancing

2010-07-02 Thread Erik van Oosten
that receives the request searches and cannot find the session id and marks the page as expired. The next request then populates the browser's cookie and the sticky session works.This is just a theory, but it would explain the behavior. -- Sent from my SMTP compliant software Erik van Oosten http://day

Re: ResourceStreamLocator and mvn resource:resource copying resources in the right directory

2010-06-19 Thread Erik van Oosten
); } Regards, Bernard -- 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: ListView + dynamic rows: always remove last row...

2010-06-19 Thread Erik van Oosten
); item.add(removeKeyword); } }; add(keywordView); keywordView.setReuseItems(true); Im getting crazy about that... Thanks. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: ResourceStreamLocator and mvn resource:resource copying resources in the right directory

2010-06-19 Thread Erik van Oosten
); } Regards, Bernard - 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: Getting started with Scala, Spring, Hibernate Wicket

2010-06-19 Thread Erik van Oosten
of the usecases you'll encounter, you don't. - 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

Re: get resource translation with specific locale

2010-06-09 Thread Erik van Oosten
some better alternative. Thanks for any help ! Marieke -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/get-resource-translation-with-specific-locale-tp2247162p2247162.html -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: get resource translation with specific locale

2010-06-09 Thread Erik van Oosten
generate the emailtext in the onSubmit of my form. The data that is printed in my form, and visible to the webuser, needs to be in the locale from the session. So I can't override the getLocale from the Form. Or am I missing something? Thanks, Marieke -- Erik van Oosten http://www.day-to-day

Re: Clear URL parameters

2010-05-26 Thread Erik van Oosten
a Custom Session? I mean using setRedirect(true) works but something I set in the WebSession is lost. - -- arsh -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr

Re: root context, IE, home page is not found

2010-05-05 Thread Erik van Oosten
servletPath = request.getServletPath(); // e.g. / redirectUrl = contextPath + servletPath; } else { redirectUrl.substring( 2 ) } } Cheers, Martin On Sat, 2010-05-01 at 10:47 +0200, Erik van Oosten wrote: This might be related to https://issues.apache.org/jira/browse/WICKET

Re: The better way tp add component directly

2010-05-02 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: root context, IE, home page is not found

2010-05-01 Thread Erik van Oosten
this ugly 404-error page, stating The requested resource (/.) is not available. I use Wicket 1.4.7 and the web application is deployed as ROOT context on Tomcat 6.0.26. Is there no solution for this? Regards /Jimi -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com

Re: URL Encoding strategy

2010-04-09 Thread Erik van Oosten
question, why BookmarkablePageRequestTargetUrlCodingStrategy#encode method is still final even in wicket-1.4.7 if there is a good use-case for extending it? Also, maybe you could add this contribution to wicket core or at least wicket-extension? Thank you! Alex Objelean Erik van Oosten wrote

Re: URL Encoding strategy

2010-04-09 Thread Erik van Oosten
reuse your code for root mounting. Until wicket-1.5 will be released and adopted, we still have to have a solution for root mounting in wicket-1.4. Thanks! Alex Erik van Oosten wrote: Hi Alex, I am not sure it is a good idea to include this code in Wicket core (or extension

Re: Results of AutoCompleteTextField shown behind other form components

2010-03-25 Thread Erik van Oosten
-- Sent from my SMTP compliant software 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: Application#get in WicketSessionFilter

2010-03-17 Thread Erik van Oosten
-custom-servlet-ts24814177.html#a24815786 [2] http://old.nabble.com/WicketFilter-td25205475.html#a25210469 -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr

Re: Application#get in WicketSessionFilter

2010-03-16 Thread Erik van Oosten
-servlet-ts24814177.html#a24815786 [2] http://old.nabble.com/WicketFilter-td25205475.html#a25210469 -- Sent from my SMTP compliant software Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail

Re: InMethod Grid: resizing rowcount

2010-03-16 Thread Erik van Oosten
accordingly. I work with very large datasources, and unknown rowcounts. I can workaround this issue by providing the page-size to my datasource, so that I can fix the IQuery.getCount() asked by inmethod. Not a nice solution, but will work for now. -- Sent from my SMTP compliant software Erik van Oosten

WIcket mounting on root (Was: URL Encoding strategy)

2010-02-25 Thread Erik van Oosten
you're done. Thanks again. Nishant On Sat, Feb 20, 2010 at 6:40 PM, Erik van Oosten e.vanoos...@grons.nlwrote: Hi Nishant, This is tricky stuff. Here is some information: http://old.nabble.com/How-to-catch-unknown-%28not-mounted%29-URLs--td14949092.html Another approach is to do redirects

Re: Questions about how wicket serialization works

2010-02-22 Thread Erik van Oosten
? -- Send from my SMTP compliant software 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: Questions about how wicket serialization works

2010-02-21 Thread Erik van Oosten
. Does the Back button get the getObject method called too? After using the back button, reload the page, and you'll get the re-rendered content. What did I miss? Thanks, David Regards, Erik. -- Send from my SMTP compliant software Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: URL Encoding strategy

2010-02-20 Thread Erik van Oosten
to this? Regards Nishant -- Posted from my SMTP compliant software. 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 Google maps integration

2010-02-15 Thread Erik van Oosten
it. Regards Joshua -- Send from my SMTP compliant software 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: AbortException

2010-02-08 Thread Erik van Oosten
); throw new AbortException(); However, there seems to be situations where the AbortException actually bubbles back up to the user. What would cause the redirect not to work and the AbortException to make it to the screen? D/ -- Send from my SMTP compliant software Erik van Oosten http

Re: class/interface/enum containing string values for html tag attributes

2010-02-04 Thread Erik van Oosten
commands, e-mail: users-h...@wicket.apache.org -- Send from my SMTP compliant software Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: setResponsePage in the beggining of a constructor does not work

2010-02-04 Thread Erik van Oosten
software 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: How to simulate browser back button?

2010-02-02 Thread Erik van Oosten
:09 AM, PDiefent pdief...@csc.com wrote: It's not that simple! My IE doesn't accept the onclick in the tag. Is it poosible to run the code in the onSubmit method of a Wicket button? Erik van Oosten wrote: No problem: # back Peter Diefenthaeler wrote: Hallo Wicket users

Re: Image auto-resize in browser

2010-02-01 Thread Erik van Oosten
alt=Some Text height=3000 width=2000/ -- Send from my SMTP compliant software Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail

Re: How to simulate browser back button?

2010-02-01 Thread Erik van Oosten
No problem: a href=# onClick=/history/.back()back/a Peter Diefenthaeler wrote: Hallo Wicket users. is there an easy way to simulate the browsers back button with an own button in a form? Thank in advance Peter -- Send from my SMTP compliant software Erik van Oosten http://day-to-day

Re: Localization properties overriding

2010-01-25 Thread Erik van Oosten
use the last found, shouldn't it?). According to what happens my UserHomePage should read only Home Page in it's title Sorry to bother, regards, Marek On 01/25/2010 03:39 PM, Erik van Oosten wrote: He Marek, The idea of Wicket i18n is that when you use a component, you can override its

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: 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: 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: [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: 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: 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: 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: 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: 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: 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: How to add Random number to URL ?

2009-08-13 Thread Erik van Oosten
(not for images), any examples ??? -- 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: StringResourceModel ignores Converters?

2009-08-13 Thread Erik van Oosten
of the converted?! Is this a bug or a feature? Thanks 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

Re: Wicketstuff releases?

2009-08-13 Thread Erik van Oosten
Thomerson http://www.wickettraining.com -- 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

Wicketstuff core 1.4.0 release preparations

2009-08-13 Thread Erik van Oosten
(no build errors, etc), then let the list know. That will make it much easier to do the release. And I'll try to document the process so that someone else can perform the next one easier. -- Jeremy Thomerson http://www.wickettraining.com -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: Wicketstuff core 1.4.0 release preparations

2009-08-13 Thread Erik van Oosten
one do the whole thing at once? BTW, should wicketstuff-core not change from 1.4-SNAPSHOT to 1.4.0-SNAPSHOT? Regards, Erik. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users

Re: Wicketstuff core 1.4.0 release preparations

2009-08-13 Thread Erik van Oosten
Yes, that did it. Running the dryRun in wicket-stuff/wicketstuff-core/yui-parent/yui succeeds. I repeated this for yui-examples. yui-parent, yui and yui-examples are ready to go! Regards, Erik. Erik van Oosten wrote: There is actually one more thing I could have tried: execute

Wicketstuff core 1.4.0 release preparations

2009-08-13 Thread Erik van Oosten
://www.wickettraining.com -- 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: Wicketstuff core 1.4.0 release preparations

2009-08-13 Thread Erik van Oosten
Maarten, you just beated me to it. Is the jazzyplugin still needed after your changes? Regards, Erik. Erik van Oosten wrote: Hi, Unfortunately tinymce does /not/ compile. It fails with a missing dependency to jazzyplugin:jazzyplugin:jar:0.2.1. Regards, Erik. -- Erik van Oosten

Wicketstuff releases?

2009-08-12 Thread Erik van Oosten
Hello, Now that Wicket 1.4.0 is out, I wonder which wicketstuff core version is compatible. There is no 1.4.0 version of wicketstuff core (yet?). Should I use 1.4-rc8-SNAPSHOT? I guess http://sourceforge.net/projects/wicket-stuff/files/ is no longer in use. Regards, Erik. -- Erik van

Re: Wicketstuff releases?

2009-08-12 Thread Erik van Oosten
of the month to a release is good enough for me. Regards, Erik. On Wed, 12 Aug 2009 10:24:07 +0200, Maarten Bosteels mbosteels@gmail.com wrote: Hello, On Wed, Aug 12, 2009 at 10:16 AM, Erik van Oosten e.vanoos...@grons.nlwrote: Hello, Now that Wicket 1.4.0 is out, I wonder

Re: Changing a Form's Model

2009-08-10 Thread Erik van Oosten
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: Output to input stream for streaming?

2009-08-10 Thread Erik van Oosten
with pipedstreams? There is an article about it here, but I may have misunderstood the details: http://ostermiller.org/convert_java_outputstream_inputstream.html ** Martin 2009/8/10 Erik van Oosten e.vanoos...@grons.nl: That won't work. Servlets are synchronous; they don't expect anyone writing

Re: DataTable with more than one tr per item

2009-08-10 Thread Erik van Oosten
Kariem, There is a hint at http://cwiki.apache.org/WICKET/wickets-xhtml-tags.html#Wicket%27sXHTMLtags-Elementwicket:container Regards, Erik. Igor Vaynberg wrote: no, a datatable doesnt support that. but it is easy enough with your own repeater. -igor -- Erik van Oosten http://day

Re: Help us release 1.4 sooner by helping out with the migration guide

2009-08-07 Thread Erik van Oosten
If I remember correctly: the first link should be use. The second can be edited and will be copied to the first after each change. If the pages are not equal, something went wrong with the copy process. Re. LinkTree: every change should be on this page. Please add it. Regards, Erik. Major

Re: wicket rewriting name attributes in form

2009-08-06 Thread Erik van Oosten
protein_id to mutantPredictionSubmitPanel:proteinId, and this causes the python script at the other end to choke. Is there a way to disable the rewriting of the name attribute, or specify my own name? -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Wicketstuff checkout fails

2009-08-05 Thread Erik van Oosten
/tinymce/'; please relocate e...@oostblok:~/projects/wicketstuff$ Accessing the repo with FF is no problem. Am I doing something wrong? Regards, Erik. -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: Wicketstuff checkout fails

2009-08-05 Thread Erik van Oosten
Aacchh!! Me hit forehead with table Martin Funk wrote what are you trying to do? that url is no subversion repo, but a maven repo. maybe you were looking for this: http://sourceforge.net/projects/wicket-stuff/develop mf

Re: Caching a resource on the browser side

2009-08-04 Thread Erik van Oosten
-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/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Stateless login form?

2009-08-03 Thread Erik van Oosten
invalidates). Does not look professional and it is totaly unnecessary, in my opinnion. It should be possible to handle forms on virgin (=no state bound yet) invocations too. ** Martin 2009/8/2 Erik van Oosten e.vanoos...@grons.nl: Martin, I am not sure what you mean. On the site you are referring

Re: Adding javascript after tab clicked

2009-08-03 Thread Erik van Oosten
3, 2009 at 1:07 PM, Eyal Golan egola...@gmail.com wrote: I'm not sure, but are you looking for this: AjaxRequestTarget #appendJavascript(javascript) ? Eyal Golan egola...@gmail.com -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: Stateless login form?

2009-08-02 Thread Erik van Oosten
Martin, I am not sure what you mean. On the site you are referring, the login page is always visible under /login. Regards, Erik. Martin Makundi wrote: If I understood correctly, you might find this interesting:

Re: How to use Session.replaceSession() ??

2009-07-29 Thread Erik van Oosten
().getLocale()); getSession().invalidateNow(); Session.unset(); newSession.replaceSession(); But I think there must be something easier... ???! Thanks Matt -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: Ajax indicator turning off

2009-07-28 Thread Erik van Oosten
This seems like something that warrants a new Jira issue. Regards, Erik. John Patterson wrote: paolo di tommaso wrote: Yep, intercept the ajax call and inc/dec a counter -- paolo Although I could correct the indicator behaviour in all my own AJAX components, it would

Re: Questions about Wicket sessions

2009-07-27 Thread Erik van Oosten
it to be the 'open in new window' function. Then you still have the same browser, but another window. Regards. Erik. -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ - To unsubscribe, e-mail: users-unsubscr

Re: UnauthorizedActionException wrapped in an InvalidUrlException - how to deal with it ?

2009-07-27 Thread Erik van Oosten
Olger Warnier schreef: Intresting, I assume that it is of value to have this construction, could you give me the link to the RFE ? https://issues.apache.org/jira/browse/WICKET-2200 -- Erik van Oosten http://day-to-day-stuff.blogspot.com

Re: UnauthorizedActionException wrapped in an InvalidUrlException - how to deal with it ?

2009-07-27 Thread Erik van Oosten
Sorry Olger, that was a copy paste error. Please see Alex' e-mail. Regards, Erik. Erik van Oosten schreef: Olger Warnier schreef: Intresting, I assume that it is of value to have this construction, could you give me the link to the RFE ? https://issues.apache.org/jira/browse/WICKET-2200

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

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

  1   2   3   4   >