Re: Wicket RAD project

2010-02-08 Thread wfaler
Hi, I'm the author of the project, and I'd say the answer to that is yes and no: Yes: The code has been maintained and bug fixed in SVN, and should work without any kinks with the latest stable 1.4.x versions of Wicket. I use the project myself on all Wicket projects that I start. No: Being the

Re: JPA EntityManager storage

2009-06-10 Thread wfaler
Regarding Open Session in View type patterns for JPA as Adrian mentioned, there are slides from the London Wicket event here: http://londonwicket.googlecode.com/files/LondonWicket-OpenSessionInView.pdf http://londonwicket.googlecode.com/files/LondonWicket-OpenSessionInView.pdf There is a

Re: [wicket-rad] Problem creating form

2009-02-19 Thread wfaler
Hi, Wicket RAD is actually not officially part of Wicket, so the right forum is here: http://www.nabble.com/Wicket-RAD-f35257.html However, looking at your code, what version of Wicket are you using, and is it really on the classpath? the add call on the line referred to in the stacktrace is

Re: [wicket-rad] Problem creating form

2009-02-19 Thread wfaler
. hbf wrote: On 19.02.2009, at 19:42, Kaspar Fischer wrote: On 19.02.2009, at 19:34, wfaler wrote: Hi, Wicket RAD is actually not officially part of Wicket, so the right forum is here: http://www.nabble.com/Wicket-RAD-f35257.html Sorry! I will post a next topic to that forum. However

Re: [wicket-rad] Problem creating form

2009-02-19 Thread wfaler
to work, it needs to setup the RequestCycle correctly. Regards Wille hbf wrote: On 19.02.2009, at 19:42, Kaspar Fischer wrote: On 19.02.2009, at 19:34, wfaler wrote: Hi, Wicket RAD is actually not officially part of Wicket, so the right forum is here: http://www.nabble.com/Wicket-RAD

Re: Wicket and CoC

2008-11-26 Thread wfaler
Speaking of which, I'd be happy to get help with Wicket RAD. :) Especially in the area of making look-and-feel more customizable/flexible, but other ideas are also welcome of course. Help with documentation would also be very, very welcome. :D Have a new release in the works, just been a bit

Re: Wicket-rad question

2008-09-17 Thread wfaler
For persistence, the answer is probably yes, as it uses hibernate as the jpa provider (and jpa and hibernate annotations are almost identical). Haven't tested though. For form generation and validation, no, not at the moment, but it should be pretty simple to implement it by just implementing a

Re: Newbie Question: Dynamically Building Form Elements

2008-09-12 Thread wfaler
Jonathan Locke wrote: also see wicket-rad if appropriate A http://sites.google.com/site/wicketrad URL could be useful, so here it is . :) The org.wicketrad.propertyeditor package in the wicket-rad-core module has a bunch of Panels you might want to look at for your problem. The exact

Re: Newbie Question: Dynamically Building Form Elements

2008-09-12 Thread wfaler
ListView suffice in this situation? That's all they asked for. The XP folks would say, Do the simplest thing that works. On Fri, Sep 12, 2008 at 3:56 AM, wfaler [EMAIL PROTECTED] wrote: Jonathan Locke wrote: also see wicket-rad if appropriate A http://sites.google.com/site/wicketrad URL

Re: Wicket RAD 0.4 released + call for contributions help

2008-08-02 Thread wfaler
Martijn Dashorst wrote: WIth regards to the TinyMCE editor, why didn't you maintain it on the wicketstuff repo? That is the place where people expect the component to be. Having an unmaintained component and an invisible one elsewhere doesn't sound like a good way to move the TinyMCE

Wicket RAD 0.4 released + call for contributions help

2008-08-01 Thread wfaler
I have just released a new version of Wicket RAD -an open source suite of Wicket Components and utilities aimed at rapid application development that heavily leverages Wicket and Wicket Extensions. Most notable in this release is the inclusion of a sample application and code, and improved

Lazy loading pageable listview

2007-10-08 Thread wfaler
Hi, I have a page where I have a DataContainer that shows ten items at a time, with paging links at the bottom. Is there any way of lazy-loading the contents of the datacontainer? I need to do this, as the amount of data is very large (up to 300 000 rows, depending on the search criteria). I

Re: Lazy loading pageable listview

2007-10-08 Thread wfaler
: have you looked in wicket-examples under repeaters? -igor On 10/8/07, wfaler [EMAIL PROTECTED] wrote: Hi, I have a page where I have a DataContainer that shows ten items at a time, with paging links at the bottom. Is there any way of lazy-loading the contents of the datacontainer

custom icons on LinkTree nodes?

2007-10-03 Thread wfaler
Hi, I'm using a LinkTree to display a tree-structure with links in a sidebar. What do I have to do to get it to display custom icons (on a per node-basis) in the tree? Help would be very much appreciated. / Wille -- View this message in context:

Changing html-template programmatically?

2007-09-27 Thread wfaler
Hi, Is it possible to change the default html-template file loaded for a class programmatically (for instance, changing from a classpath file, to a file in another file-directory)? For instance, if I want to change the underlying html-template on the fly, but keeping the same component hierarchy?

Using Resource to provide background attribute to td-tag?

2007-09-25 Thread wfaler
Hi, I want to use a ResourceReference (or something comparable) to set the background-attribute of a td-cell with an image on my classpath. How do I achieve this? It is quite straightforward for images, but it gets trickier with background-images to other html elements.. / Wille -- View this