Modal window and resource request target

2008-07-08 Thread jwray
Hi, I have the situation in which an action applied to a specific object needs to obtain some information from the user then construct a dynamic resource (pdf file) based on the object and obtained information. The list of object are contained in AjaxFallbackDefaultDataTable and I am currently

Re: Modal window and resource request target

2008-07-08 Thread jwray
RedirectRequestTarget. -Matej On Tue, Jul 8, 2008 at 10:23 PM, jwray [EMAIL PROTECTED] wrote: Hi, I have the situation in which an action applied to a specific object needs to obtain some information from the user then construct a dynamic resource (pdf file) based on the object

JFreeChart component

2008-10-27 Thread jwray
Hi, I recently developed a component that displays a chart generated from JFreeChart and includes the associated image map that allows the chart to generate tooltips and respond to user clicks, via an Ajax link. I thought this maybe useful to other people so I've included the files here. To use

Re: JFreeChart component

2008-10-28 Thread jwray
I looked around wicket stuff and didn't see anything related to JFreeChart. If you think it is suitable for inclusion in wicket-stuff, or elsewhere, then by all means upload it. It's only four classes so I don't think it is worth creating a new project for, and I don't know where it would fit

Re: JFreeChart component

2008-10-29 Thread jwray
Err, sort of confused about the last few messages. I submitted the component as I thought it would be useful for other people, and from the emails I've got I guess it was. When I had the need to implement a clickable chart a few weeks ago I looked around for an existing solution, and found

RE: JFreeChart component

2008-10-30 Thread jwray
Good idea, I wasn't aware the wiki was open. http://cwiki.apache.org/confluence/display/WICKET/JFreeChart+with+clickable+imagemap Hoover, William wrote: Why not post your solution to the wiki? -Original Message- From: jwray [mailto:[EMAIL PROTECTED] Sent: Wednesday, October

Re: Generics and SortableDataProvider

2009-10-05 Thread jwray
Hi Sven, Thanks for your reply. Since I sent the original question I ended up doing what you suggested and now I'm wondering why I ever used the id projection approach. Habit I guess, formed with previous frameworks. Just to make sure I've got this right, as long as I use a DetachableModel as

Re: JFreeChart with clickable imagemap

2010-10-28 Thread jwray
Hi, A little late maybe but since I wrote that wiki page I've improved the code to use models and so be responsive to data changes. Here's a link to a gist providing a wicket component that allows a JFreeChart to be displayed with both tooltips and clickable entities.

Re: AjaxLazyLoadPanel, nothing else works until it finishes loading

2010-11-24 Thread jwray
The page will block until the panel is loaded. There are a number of threads discussing this. Here are a couple of gists that allow panel content to be loaded in an asynchronous manner in another thread, thus making the UI appear non-blocking. https://gist.github.com/594468

Notifying a DataTable that data has changed

2008-01-31 Thread jwray
Hi, New to Wicket so this maybe some obvious I'm missing and I'd appreciate any pointers. I have an AjaxFallbackDefaultDataTable within a AjaxTabbedPanel backed by a SortableDataProvider that drags data from a database as needed. One column of my table contains an AjaxFallbackLink. This link

Re: Notifying a DataTable that data has changed

2008-01-31 Thread jwray
callback to the window that repaints the datatable by adding it to the ajax request target? -igor On Jan 31, 2008 7:47 PM, jwray [EMAIL PROTECTED] wrote: Hi, New to Wicket so this maybe some obvious I'm missing and I'd appreciate any pointers. I have an AjaxFallbackDefaultDataTable

IllegalStateException with AjaxFallbackDefaultDataTable

2008-02-07 Thread jwray
Hi, I'm experiencing an IllegalStateException (stack trace below) that I can't get rid of. I have a AjaxFallbackDefaultDataTable with columns made up of an extension of PropertyColumn that places an AjaxEditableLabel into the cell within the populateItem. This works great until I attempt to add

Re: IllegalStateException with AjaxFallbackDefaultDataTable

2008-02-08 Thread jwray
Hi Igor, I was hoping it would be an obvious problem. Here's my table construction code (is there a better way of posting code?) ListIColumn columns = new ArrayListIColumn(); PostOnSubmitAction peptideUpdateAction = new PostOnSubmitAction(); columns.add(new

Re: IllegalStateException with AjaxFallbackDefaultDataTable

2008-02-08 Thread jwray
that error you see. if i were you i would set a breakpoint at that line, and see what component exactly is removed from the page, and then try to figure out why it is removed from the page and yet is added to the ajax target. -igor On Feb 8, 2008 9:47 AM, jwray [EMAIL PROTECTED] wrote

Re: IllegalStateException with AjaxFallbackDefaultDataTable

2008-02-28 Thread jwray
Antoine, I actually approached the problem from a different direction in the end and avoided this error. But, before I did that I tracked it down to calling super.onSubmit call in the overridden onSubmit method of the AjaxEditableLabel. I didn't get any further than that I'm afraid. hope it