Re: JFreeChart with clickable imagemap

2010-10-01 Thread James
Thanks Ernesto. I'll do the same. On Fri, Oct 1, 2010 at 2:24 PM, Ernesto Reinaldo Barreiro < reier...@gmail.com> wrote: > James, > > why not add this "bit" to the wiki page you mentioned? So that others > can avoid loosing the hours you lost;-) > > Cheers, > > Ernesto > > On Fri, Oct 1, 2010 at

Re: alphabetical paging navigator

2010-10-01 Thread elesi
can you give an idea on how to do that? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/alphabetical-paging-navigator-tp2837010p2853331.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Forms ajax doesn't update components models

2010-10-01 Thread vov
How it currently must work? Example: Your open the page -> change your Combo to 'AUTO' -> input data to AutoInfoPanel and press 'Registrar' OR Your open the page -> change your Combo to 'AUTO' -> input data to AutoInfoPanel -> change your Combo to 'PERSONA' -> input data to PersonaInfoPanel and pr

Re: Coding - On Software Design Process

2010-10-01 Thread Josh Kamau
Great. I will surely get a copy. I have so many design related issues in my mind. Josh On Thu, Sep 30, 2010 at 5:22 PM, Jonathan Locke wrote: > > Hello Wicketeers! > > I recently finished writing a short book (less than 70 pages) on software > design process. I wrote this book because I wanted a

Re: Wicketstuff DataGrid by inmethod - how to download it?

2010-10-01 Thread Martin Grigorov
http://repo2.maven.org/maven2/org/wicketstuff/inmethod-grid/1.4.12/ On Thu, Sep 30, 2010 at 11:05 PM, Chris Colman wrote: > I'm currently contracting to a company that has very strict controls > over the development desktops and a very thorough firewall which does > not allow SVN connections in

Re: alphabetical paging navigator

2010-10-01 Thread Mathias Nilsson
This can be implemented in a better way. See source code for navigation in wicket. But here is a simple example // Create a panel import java.util.LinkedList; import java.util.List; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.ajax.markup.html.AjaxLink; import org.

Re: Wicket 1.5 and OSGi

2010-10-01 Thread Martin Grigorov
Hi Elke, On Fri, Oct 1, 2010 at 8:34 AM, Eike Kettner wrote: > Hello! > > I developed a wicket app using OSGi (felix) where different bundles may > contribute content to the wicket bundle. It works really nice using > wicket 1.4.9+. Now I want to upgrade to wicket 1.5 and I run in problems > sta

Re: Wicket 1.5 and OSGi

2010-10-01 Thread Eike Kettner
Hi Martin, On [Fri, 01.10.2010 10:05], Martin Grigorov wrote: > Hi Elke, > > On Fri, Oct 1, 2010 at 8:34 AM, Eike Kettner wrote: > > > Hello! > > > > I developed a wicket app using OSGi (felix) where different bundles may > > contribute content to the wicket bundle. It works really nice using >

legup / guic 2.0 + warp persist missing filter?

2010-10-01 Thread nino martinez wael
Hi Are there any reason why the legup archetyp are missing the persistence filter declaration? Like belov? warpPersistFilter com.wideplay.warp.persist.PersistenceFilter warpPersistFilter /*

Re: Wicket 1.5 and OSGi

2010-10-01 Thread Martin Grigorov
On Fri, Oct 1, 2010 at 10:05 AM, Martin Grigorov wrote: > Hi Elke, > > On Fri, Oct 1, 2010 at 8:34 AM, Eike Kettner wrote: > >> Hello! >> >> I developed a wicket app using OSGi (felix) where different bundles may >> contribute content to the wicket bundle. It works really nice using >> wicket 1.4

Wicket 1.5 PageMap, accessStack, pageMapEvictionStrategy

2010-10-01 Thread Michal Kurtak
Hi, I'm playing with wicket 1.5-M2.1 and i couldn't find PageMap. Problem is not in PageMap itself, but I have used operations on PageMap which I couldn't find in wicket 1.5. For example we used accessStack to find page of certain class and response with that page: Session.get().getDefaultPageMap

Wicket 1.5 Ajax issue?

2010-10-01 Thread nino martinez wael
Hi I've possibly encountered an issue with the AjaxSelfUpdatingTimerBehavior. Suddently Ajax stops working, a browser refresh fixes the problem. If you need more details please tell. Snip from code: webMarkupContainer.add(new AjaxSelfUpdatingTimerBehavior(Duration

Re: Wicket 1.5 Ajax issue?

2010-10-01 Thread nino martinez wael
Forgot to show that I of course did set these: webMarkupContainer.setOutputMarkupId(true); webMarkupContainer.setOutputMarkupPlaceholderTag(true); 2010/10/1 nino martinez wael : > Hi > > I've possibly encountered an issue with the > AjaxSelfUpdatingTimerBehavior.

Re: Wicket 1.5 Ajax issue?

2010-10-01 Thread Martin Grigorov
ticket please + quckstart ;-) On Fri, Oct 1, 2010 at 11:59 AM, nino martinez wael < nino.martinez.w...@gmail.com> wrote: > Forgot to show that I of course did set these: > >webMarkupContainer.setOutputMarkupId(true); >webMarkupContainer.setOutputMarkupPlaceholderT

Re: Wicket 1.5 PageMap, accessStack, pageMapEvictionStrategy

2010-10-01 Thread Martin Grigorov
Hi Michal, PageMap is completely removed from 1.5. You'll need to play with IPageManager, IPageStore, and/or IDataStore implementations. Take a look at http://github.com/martin-g/wicket-cassandra-datastore/blob/master/src/test/java/org/wicketstuff/datastore/cassandra/demo/DemoApplication.java to s

Re: Bug in Wicket Push TimerChannelService when used with background threads

2010-10-01 Thread Sebastian
I just realized that the current session is also bound to the thread context. Would it make sense to attach the Session to the background thread using the same way we do it for the Application? E.g. Session oldSession = Session.exists() ? Session.get() : null; Session.set(_session); try {

problems with redirectToInterceptPage

2010-10-01 Thread nimmy
Hi All, I'm having some trouble with 'redirectToInterceptPage' and would appreciate any help you can provide I have a 'login' link on my page - PageA. My intention is that: 1. if the user clicks on the 'login' link the user will be forwarded to the Index page, which includes the standard Wicke

Wicket Serialization

2010-10-01 Thread Sebastian
Hi, is it possible to configure a wicket app in a way that definitely will use page serialization/deserializion on each request and will not hold any page/component instances between requests in memory? I'd like to use this during development time to test some aspects of my wicket components.

Re: Workflow diagrams in wicket?

2010-10-01 Thread Michael O'Cleirigh
Hi I don't think there is any wicket implementation right now. But you can probably build something to do it. It looks like there are JSF components (I assume that you are looking for the same kind of wicket integration) that allow diagram creation. If you have access to the source you shou

LegUp - updated

2010-10-01 Thread Peter Thomas
LegUp [1][2] has been updated to use the latest available versions of Wicket, Spring, Hibernate, Scala and wiQuery. The JBoss maven repository location (for Hibernate / JPA) has also been updated to point to the new one. LegUp gives you a head start creating projects using various combinations of

Re: Forms ajax doesn't update components models

2010-10-01 Thread Tito
I have to submit only info of selected combo option. But i can't show entire form when combo changes because part of form is fixed. If i select auto, only info of auto_info_panel matters. The same way to persona. I don't know if you were asking that. I hope i answered correctly. Thanks! --

ModalWindow causes 'Submit Button not visible' exception

2010-10-01 Thread Andrea Del Bene
Hi everybody, I'm facing the following problem. I've got a page with a wicket form and just one submit button. When I press return key in a form field the form is submitted with no problem. Inside form I've one link that opens a ModalWindow via ajax. This window contains another wicket form which

Re: rich UI

2010-10-01 Thread fachhoch
something like http://www.smartclient.com/smartgwt/showcase/#layout_windows_autosize -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/rich-UI-tp2744207p2909582.html Sent from the Users forum mailing list archive at Nabble.com. -

Wicket and HttpServletRequestWrapper

2010-10-01 Thread yferahi
Hi, I am trying to implement Wicket1.4.10 + Wicket-Auth-role + Spring Security + SSO (SiteMinder).. I am mocking siteMinder by using a Filter that is invoked first after each request, this filter wraps the original HttpServletRequest by my MockRequest. MockRequest adds 2 headers SM_USER and SM_RO

Exception handling for components inside a page

2010-10-01 Thread Rui Fernando Hayashi
I have a Wicket page which is a dashboard composed of a number of panels. The actual panels are only known in runtime and are added to a RepeatingView. That's because I have a modular application, and each module can contribute panels to the dashboard. The modularity issue is well solved and workin

Re: automatically sizing modal window

2010-10-01 Thread Fernando Wermus
I need that my modal window works with a page :(. On Tue, Sep 28, 2010 at 9:00 AM, Anna Simbirtsev wrote: > I think if the modal window is a panel, not a Page, then it auto sizes > its height. > > On Mon, Sep 27, 2010 at 5:41 PM, Martin Grigorov > wrote: > > patches are welcome > > especially if

Slow wicket page on specific server

2010-10-01 Thread Mathias Nilsson
Hi, I don't know if any of you have experienced this but any feedback is welcome. On my local server the checkout page renders in less than a second. On the deployment server it also renders in less than a second. We are now upograding to a new server but the same page takes 10 seconds to render

Wicket on Google App Engine support for IPageStore on BigTable

2010-10-01 Thread Bruno Borges
Like I've tweeted a few days ago, I've implemented a BigTableGAEPageStore for Wicket so we can advance another step further full compatibility with Google App Engine. The project can be seen at http://code.google.com/p/gawcket It is a fork of wicket-gae-template with a modified Guestbook to not u

problem with Ajax and BookmarkablePage

2010-10-01 Thread A. Zwaan
Hello all, I seem to have a problem with BookmarkablePage and it triggering a full page rebuild after an ajax call, while the Ajax call was only meant to update several fields. The situation is as follows; Our application has a grid with input fields, we use an Ajax behaviour on this grid to

Re: Wicket Serialization

2010-10-01 Thread Igor Vaynberg
wicket already tests serialization for you in dev mode -igor On Fri, Oct 1, 2010 at 5:37 AM, Sebastian wrote: > Hi, > > is it possible to configure a wicket app in a way that definitely will use > page serialization/deserializion on each request and will not hold any > page/component instanc

Re: ModalWindow causes 'Submit Button not visible' exception

2010-10-01 Thread Igor Vaynberg
jira+quickstart please -igor On Fri, Oct 1, 2010 at 6:24 AM, Andrea Del Bene wrote: > Hi everybody, > > I'm facing the following problem. I've got a page with a wicket form and just > one submit button. When I press return key in a form field the form is > submitted > with no problem. Inside fo

Re: Slow wicket page on specific server

2010-10-01 Thread Doug Leeper
Have you tried to do a thread dump while it is responding to the request? My guess is it some network related issue, i.e. firewall, DNS or something along the lines. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Slow-wicket-page-on-specific-server-tp2914155p2916656

Re: Wicket and HttpServletRequestWrapper

2010-10-01 Thread Martin Grigorov
On Fri, Oct 1, 2010 at 3:59 PM, yferahi wrote: > > Hi, > > I am trying to implement Wicket1.4.10 + Wicket-Auth-role + Spring Security > + > SSO (SiteMinder).. > I am mocking siteMinder by using a Filter that is invoked first after each > request, this filter wraps the original HttpServletRequest

Re: Exception handling for components inside a page

2010-10-01 Thread Igor Vaynberg
no, there isnt. exceptions that occur during render time are very hard to recover from. what you can do is place every panel into an iframe. -igor On Fri, Oct 1, 2010 at 7:14 AM, Rui Fernando Hayashi wrote: > I have a Wicket page which is a dashboard composed of a number of > panels. The actual

Re: problem with Ajax and BookmarkablePage

2010-10-01 Thread Igor Vaynberg
if wicket is resolving BookmarkablePageRequestTarget then it thinks it is being sent a bookmarkable url. check which url is being sent by the ajax request. -igor On Fri, Oct 1, 2010 at 7:40 AM, A. Zwaan wrote: > Hello all, > > I seem to have a problem with BookmarkablePage and it triggering a fu

RE: Problem Deploying Wicket/JPA (EclipseLink) App to Glassfish

2010-10-01 Thread Shelli Orton
Found the answer in this post: http://stackoverflow.com/questions/1617191/deploy-war-through-netbeans-o nto-glassfish-v3-beta I needed to change the web.xml version to 2.5 http://java.sun.com/xml/ns/javaee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.su

Re: legup / guic 2.0 + warp persist missing filter?

2010-10-01 Thread Richard Wilkinson
Hi Nino, I assume you mean the jWeekend legup? Ive just checked and both of the wicket warp archetypes have the filter, which archetype and version do you mean (we updated the versions today, but I don't think we changed any web.xml files)? -- Regards - Richard Wilkinson Developer, jWeekend: OO

Wicket 1.4.12 Ajax problems

2010-10-01 Thread Wayne Pope
Hi, I just tried migrating our app from 1.4.8 to 1.4.12. However I'm having a lot of trouble with ajax submits now. I cannot get anything to work. I'm getting various problems depending on the browser. Such errors as: stack overflow in line 433 (IE7) Wicket.WUPB.Def is null or not an object (line

Wicket and HttpServletRequestWrapper

2010-10-01 Thread yferahi
Hi, I am trying to implement Wicket1.4.10 + Wicket-Auth-role + Spring Security + SSO (SiteMinder).. I am mocking siteMinder by using a Filter that is invoked first after each request, this filter wraps the original HttpServletRequest by my MockRequest. MockRequest adds 2 headers SM_USER and SM_

Best practice for DropDownChoice?

2010-10-01 Thread Zeldor
Hi, I was looking at many threads here about that matter and even more google links, after not really being able to properly use examples from Wicket in Action and few others. So I wonder - what's the best and most common way to implement DropDownChoice and map the value at the same time [well, o

Re: legup / guic 2.0 + warp persist missing filter?

2010-10-01 Thread nino martinez wael
hmm, the guice warp 2.0 version.. But no problem if it's there.. Must have been a glitch on my side then.. 2010/10/1 Richard Wilkinson : > Hi Nino, > > I assume you mean the jWeekend legup?  Ive just checked and both of > the wicket warp archetypes have the filter, which archetype and > version do

Long running browser with wicket..?

2010-10-01 Thread nino martinez wael
HI Im in the midst of developing an application which will be displayed on a coupled of screens per site, where the boxes won't be restarted until a problem occurs. So have any one had experience with long running IE / FF / SF or Chrome against wickets ajax? My firefox just crashed, but I have a

Re: Bug in Wicket Push TimerChannelService when used with background threads

2010-10-01 Thread Rodolfo Hansen
Added. On Fri, 2010-10-01 at 13:14 +0200, Sebastian wrote: > I just realized that the current session is also bound to the thread > context. Would it make sense to attach the Session to the background > thread using the same way we do it for the Application? > > E.g. > > Session oldSession =

Re: Slow wicket page on specific server

2010-10-01 Thread Mathias Nilsson
Here is some traces. - waiting on <0x0001e5b18860> (a java.lang.Object) at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.ja va:428) - locked <0x0001e5b18860> (a java.lang.Object) at org.quartz.simpl.SimpleThreadPool.access$000(SimpleTh

Re: Wicket 1.5 and OSGi

2010-10-01 Thread Eike Kettner
Hello again, I just had a look at the wicket packages of 1.4.12 and 1.5-M2.1 and I found some differences. For example, wicket 1.5 has a new artifact "wicket-request" and comparing the package structure there are some changes, which are probably related to my problem: wicket-1.4.12.jar: org.apac

instantiate panels in a spring bean

2010-10-01 Thread fachhoch
I am trying to instantiate some panels inside init-method of a spring bean . I end up getting this excpetion org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userMenuItems': Invocation of init method failed; nested exception is org.apache.wicket.WicketRun

Re: instantiate panels in a spring bean

2010-10-01 Thread James Carman
What do you plan on doing with these panels? They can't be re-used. On Fri, Oct 1, 2010 at 5:02 PM, fachhoch wrote: > > I am trying to instantiate  some panels inside init-method of a spring bean . > > I end up getting this excpetion > > > org.springframework.beans.factory.BeanCreationException:

Re: Prevent guest session from expiring

2010-10-01 Thread Alec Swan
I did not do any session binding. Do you mean binding HttpSession to Wicket session? What negative side effects will it have? Any docs on this? Thanks On Thu, Sep 30, 2010 at 3:30 AM, Martijn Dashorst < martijn.dasho...@gmail.com> wrote: > did you bind the session? > > On Wed, Sep 29, 2010 at 6:

Re: Wicket Serialization

2010-10-01 Thread Sebastian
hi, on a local copy of Wicket I now temporarily modified the SecondLevelCacheSessionStore class and always have the SecondLevelCachePageMap.getLastPage() method return null. This enforces that a freshly deserialized page object instance is used on each request. The reason why I am doing this

Re: Wicket Serialization

2010-10-01 Thread Igor Vaynberg
sounds wrong, no one should be keeping references to components -igor On Fri, Oct 1, 2010 at 3:32 PM, Sebastian wrote: > hi, > > on a local copy of Wicket I now temporarily modified the > SecondLevelCacheSessionStore class and always have the > SecondLevelCachePageMap.getLastPage() method return

Re: Wicket Serialization

2010-10-01 Thread Sebastian
the push service does not directly keep references, this happens because of the usage of anonymous classes created within the components, e.g. callbacks, eventlisteners, e.g.: final Label label = new Label("label",""); final IPushTarget pushTarget = getTimerPushService().installPush(this); bac

RE: Wicketstuff DataGrid by inmethod - how to download it?

2010-10-01 Thread Chris Colman
Thanks! Is there a page with that link on it anywhere? I searched for quite some time to find a distribution of the inmethod grid that wasn't just the svn link. Maybe links to the wicketstuff should be made more obvious from the main wicket site because I couldn't find it and I've been wicketing s

RE: problems with redirectToInterceptPage

2010-10-01 Thread Chris Colman
Could it be related to this issue I raised a little while ago: https://issues.apache.org/jira/browse/WICKET-2912 Try the fix and see if your problem goes away like mine did. Regards, Chris Colman >-Original Message- >From: nimmy [mailto:nim_sa...@hotmail.com] >Sent: Friday, 1 October 20

Re: Coding - On Software Design Process

2010-10-01 Thread Jonathan Locke
Excellent! A few people have pointed out that I didn't include a Table of Contents on the product page. I updated Amazon, but the change won't show up for 2-4 days, so here it is: Table of Contents Introduction About this Book About the Author Acknowledgements Chapter 1 - Practicing the

Re: instantiate panels in a spring bean

2010-10-01 Thread Arjun Dhar
Hey dont mean to arge here but Why not? You can get beans in PROTOTYPE scope (does not have to be re-usable; this aspect of Spring is all about IOC) and leverage IOC to inject panels rather than hard wiring them in the code. I like the idea. "fachhoch " can you please paste the code, I'd li

Re: instantiate panels in a spring bean

2010-10-01 Thread Arjun Dhar
...lol I just realized both you guys have over 200 posts. haha ..well i'd still like to have a crack at the problem :) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/instantiate-panels-in-a-spring-bean-tp2946859p2952156.html Sent from the Users forum mailing list arc

Re: Coding - On Software Design Process

2010-10-01 Thread nino martinez wael
looks nice.. I'll grab a copy too :) It'll probably stack nice along side "uncle bobs" clean code... 2010/10/2 Jonathan Locke : > > Excellent! > > A few people have pointed out that I didn't include a Table of Contents on > the product page. I updated Amazon, but the change won't show up for 2-4 >

Re: instantiate panels in a spring bean

2010-10-01 Thread James Carman
On Fri, Oct 1, 2010 at 11:41 PM, Arjun Dhar wrote: > > I'm a dud in Wicket compared to other geniuses around here but I'd like to > have a crack if you dont mind. > Note: Ensure your beans are PROTOTYPE not SINGLETON (default); since you > really should not retain references to Wicket components .