Re: wicket-cdi and TomEE

2013-01-04 Thread Kurt Sys
I use is (although I didn't test conversation scope): seam-conversation-spi-3.0.0.Final.jar I'm not using maven, so I can't help you out with that part, but if you can't get it working, I probably still have a mwe at home... I might put it online this weekend somewhere. Good luck, Kurt Sys

Re: wicket-cdi and TomEE

2012-12-20 Thread Kurt Sys
Hey, I got it all working (wicket+tomee) I had some posts to this list to get it to work: http://mail-archives.apache.org/mod_mbox/wicket-users/201211.mbox/%3ccadltzbdlypzbbv-piofedam7unf2nt1dqvdvy4ttguaymu0...@mail.gmail.com%3E I posted most of my configs in here, you don't need weld-stuff:

Re: wicket-cdi and TomEE

2012-12-20 Thread Kurt Sys
... forgot this one: my full system setup, used jars etc. http://openejb.979440.n4.nabble.com/tomee-eclipselink-gt-NoClassDefFoundError-ClassNotFoundException-td4658870.html Kurt 2012/12/20 Igor Vaynberg igor.vaynb...@gmail.com: looks like you have two jars on the classpath that provide the

Re: pageparameters in link onclick

2012-12-10 Thread Kurt Sys
. For some reason, the PageParameters were not passed to the component the link pointed to. However, I now used BookmarkablePageLink and it seems to work. Thanks a lot! Best regards, Kurt Sys 2012/12/10 Martin Grigorov mgrigo...@apache.org: Hi, You need to use BookmarkablePageLink (BPL) instead

pageparameters in link onclick

2012-12-08 Thread Kurt Sys
Hey, I'm having some issues with pageparameters. I'm upgrading from wicket 1.4.x to 1.6.x. Most is done, however, I can't get pageparameters to work properly. -- MainApp defines how I mount the pages, i.e. with two optional parameters (type and id): -- HomePage.java is nothing special but just

Re: Is wicket-cdi native to Wicket 6.1 and upwards?

2012-11-26 Thread Kurt Sys
Hey, http://devlearnings.wordpress.com/2011/05/15/apache-openwebbeans-cdi-from-standalone-to-webapp/ http://docs.jboss.org/weld/reference/1.0.1-Final/en-US/html/environments.html - this is for jboss, but there's something for using it in tomcat as well, and it's possible to replace weld-related

Injector.get() in websession returns null

2012-11-25 Thread Kurt Sys
Hey all, I'm trying to get cdi/injection to work with wicket. So far, everything seems to be allright except for one thing: injecting into a wicket-websession. Seems logical in some way, since a session is not a component, so I tried using 'Injector.get().inject(this)', but apparently,

Re: Injector.get() in websession returns null [SOLVED]

2012-11-25 Thread Kurt Sys
().getNonContextualManager().inject(this); On Sun, Nov 25, 2012 at 4:59 PM, Kurt Sys kurt@gmail.com wrote: Hey Martin, Thanks. The init-method of MySession looks now like this: -- private void init() { BeanManager manager = null; try

Re: ajax GET stopped because of precondition check

2011-07-06 Thread Kurt Sys
Well, I got a new hosting, and for some reason, it seems to work in IE now, except for the iframe. Nothing is loaded in the iframe so far. That'll be a IE issue, so I suppose this thread may be closed. 2011/7/5 Kurt Sys kurt@gmail.com I found this thread: http://apache-wicket.1842946.n4

Re: ajax GET stopped because of precondition check

2011-07-06 Thread Kurt Sys
of these kind of solutions). I remember: add some headers to the response. Question now is: how to customize the response of an ajax-request? Or is there any other solution to the caching of IE? (In case caching is the problem here). Thx, Kurt 2011/7/6 Kurt Sys kurt@gmail.com Well, I got a new hosting

Re: ajax GET stopped because of precondition check

2011-07-05 Thread Kurt Sys
Kurt Sys kurt@gmail.com The lazy loading example seems to work fine (I tried Wicket 1.4.17, the one I'm using too). For some reason 'precondition()' returns false in IE when called from my app. The code loading the panels is really straight forward. I can't think of any reason (for now

Re: ajax GET stopped because of precondition check

2011-07-03 Thread Kurt Sys
for me with IE8. Wicket 1.4.17 at http://wicketstuff.org/wicket14/ajax/lazy-loading On Sat, Jul 2, 2011 at 5:16 PM, Kurt Sys kurt@gmail.com wrote: Hey all, In IE, I can't get lazyloadpanels to load. I have a webapp with some lazyloadpanels, and none of them loads in IE - in other

ajax GET stopped because of precondition check

2011-07-02 Thread Kurt Sys
Hey all, In IE, I can't get lazyloadpanels to load. I have a webapp with some lazyloadpanels, and none of them loads in IE - in other browsers, there is no problem. (Also, the content of an iframe doesn't load, which seems to be related, since it is also an ajax-request.) I've been trying both IE

Re: ajaxlazyloadpanel and ie

2011-07-02 Thread Kurt Sys
updated info and code in http://apache-wicket.1842946.n4.nabble.com/ajax-GET-stopped-because-of-precondition-check-td3640560.html new thread -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ajaxlazyloadpanel-and-ie-tp3637730p3640599.html Sent from the Users forum

ajaxlazyloadpanel and ie

2011-07-01 Thread Kurt Sys
here? Thanks a lot, Kurt Sys

Re: ajaxeditablelabel and setescapemodelstrings to false

2010-10-27 Thread Kurt Sys
Hey all, anyone...? How can I make 'setEscapeModelStrings(false)' work in a AjaxEditablePanel? Thx, Kurt 2010/10/23 Kurt Sys kurt@gmail.com Hi, I'm new to Wicket and I'm trying to get the feel of it. So I tried a small webapp, using a AjaxEditableMultiLineLabel, which so far worked

ajaxeditablelabel and setescapemodelstrings to false

2010-10-23 Thread Kurt Sys
Hi, I'm new to Wicket and I'm trying to get the feel of it. So I tried a small webapp, using a AjaxEditableMultiLineLabel, which so far worked perfectly. However, if I want it not to escape the html-tags - which is generally a bad idea, I know - I use 'setEscapeModelStrings(false)'. For some