Re: Wicket And GAE

2010-04-10 Thread Juha Palomäki
I think the main issue is that for the development mode you need to disable resource polling, since that is using threads (which are not supported in GAE). This is described here: http://stronglytypedblog.blogspot.com/2009/04/wicket-on-google-app-engine.html One "problem" with this is that this ob

Re: LDM, Forms, and Ajax

2010-03-14 Thread Juha Palomäki
Could you post the source code for the page that is having the problems? On Fri, Mar 12, 2010 at 4:47 AM, Matthew Welch wrote: > I'm experimenting with a domain model that extremely interconnected. It's > being persisted using a graph database which handles this high degree of > interconnectivity

Re: UI Layout

2010-03-08 Thread Juha Palomäki
erAdd) and then use some kind of page structure around those to control the navigation. Something where you could have for example two completely different navigation systems on the application at the same time. br, Juha On Mon, Mar 8, 2010 at 10:44 AM, Juha Palomäki wrote: > Here's what

Re: UI Layout

2010-03-08 Thread Juha Palomäki
Here's what we have been using for CRUD stuff: Domain: Customer - name : String - industry : String - primaryContact : Contact Contact - name : String - Address : String - Email: String Pages: CustomerBasePage (abstact) CustomerAddPage CustomerEditPage CustomerViewPage Panels: CustomerBasePanel

Re: Large number components and redering time

2010-02-19 Thread Juha Palomäki
If you want to avoid mixing HTML and Java, you could write your component with using a templating engine, such as Velocity or Freemarker. I believe there is wicket-velocity project somewhere that provides for example Panels that can render Velocity templates files. br, Juha On Thu, Feb 18, 2010

Re: Wicket YUI integration

2009-08-31 Thread Juha Palomäki
At least there used to be some YUI related things in WicketStuff project. br, Juha On Mon, Aug 31, 2009 at 6:59 PM, Frank van Lankvelt wrote: > een building some of them by hand, including browser version > checks, and have some code to enable YUI widgets. > This is a costly business where we are

Re: IndexOutOfBoundsException on ListView model add()

2009-08-13 Thread Juha Palomäki
Here's some stuff that might be relevant if you want to use a ListView inside a form: http://wicketinaction.com/2008/10/building-a-listeditor-form-component/ A quote from the page "A common question on Wicket mailing lists is “Why doesn’t my ListView work as expected in a Form?”. There can be many

Re: RequestCycle.setRequestTarget() behaviour

2009-08-09 Thread Juha Palomäki
This seems to be the expected behaviour for RedirectRequestTarget. Wiki suggests ExternalLink as an alternative, if you want to go outside the web app: http://cwiki.apache.org/WICKET/how-to-redirect-to-an-external-non-wicket-page.html br, Juha On Mon, Aug 10, 2009 at 9:39 AM, Nils Weinander wrot

Re: FW: Auto-response for your message to the "Wicket-stuff-user" mailing list

2009-05-12 Thread Juha Palomäki
Take a look at this, http://forums-beta.sun.com/thread.jspa?messageID=3895301 It seems to describe the same problem you are having. Multiple versions of the same class in your classpath. Br, Juha On Mon, May 11, 2009 at 10:26 PM, Clermont, Teddy wrote: > > When running the contrib-wicketJasperR

Re: Google App Engine and Wicket

2009-05-11 Thread Juha Palomäki
File uploads seem to be causing some problems. On Wicket uploaded files are first written to some temporary file and on AppEngine this is obviously not possible. I haven't yet investigated if it is easy to change this behavior in Wicket. Another option might be to write a separate servlet for just

Re: DropDownChoice with ChoiceRender problem

2009-05-05 Thread Juha Palomäki
I think the exception "org.apache.wicket.WicketRuntimeException: No get method defined for class: class java.lang.String expression: id" means that Wicket is looking for the getId() method from String, not from your own SelectOption. Br, Juha On Tue, May 5, 2009 at 4:48 AM, Phillip Rhodes wrote:

Re: wicket-jasper UI

2009-05-04 Thread Juha Palomäki
Here are some rough instructions. If you for example want to embed the HTML report on a web page, you need: - instance of JRResource (there are several implementations, depending on what kind of output you want to have) - a report (either as File or as InputStream) - datasource 1. Instantiate new