Re: 404 on resource

2012-03-05 Thread Douglas Ferguson
How does wicket 1.5 reference resources that are inside the class path from the browser? Douglas On Mar 5, 2012, at 1:55 AM, Martin Grigorov wrote: Hi, On Mon, Mar 5, 2012 at 6:05 AM, Douglas Ferguson the...@gmail.com wrote: Does wicket 1.5 still use the resource urls? I'm getting

MountedMapper NullPointer

2012-03-06 Thread Douglas Ferguson
I'm seeing this exception from time to time and I'm not sure where it's coming from. java.lang.NullPointerException at org.apache.wicket.request.mapper.MountedMapper.checkHomePage(MountedMapper.java:459) at

Re: MountedMapper NullPointer

2012-03-06 Thread Douglas Ferguson
Turns out my Application.getHomePage() was returning null. On Mar 6, 2012, at 10:37 AM, Douglas Ferguson wrote: I'm seeing this exception from time to time and I'm not sure where it's coming from. java.lang.NullPointerException

1.5 Wicket Enclosure

2012-04-05 Thread Douglas Ferguson
I just found a different between 1.4 and 1.5 with regards to wicket enclosure. If you have a component in a wicket enclosure (say a feedback panel) and you set it visible false. Then subsequently try to set it visible true, wicket 1.5 will not be able to make it reappear. 1.4 had no problem

Re: 1.5 Wicket Enclosure

2012-04-06 Thread Douglas Ferguson
Is this expected behavior? Is there a workaround? On Apr 5, 2012, at 6:58 PM, Douglas Ferguson wrote: I just found a different between 1.4 and 1.5 with regards to wicket enclosure. If you have a component in a wicket enclosure (say a feedback panel) and you set it visible false

wicket ajax push

2012-05-30 Thread Douglas Ferguson
Anybody doing any ajax push stuff using wicket? Douglas - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: wicket ajax push

2012-06-04 Thread Douglas Ferguson
://github.com/Atmosphere/atmosphere/tree/master/samples) and the just released wicket 6 beta2 comes with a wicket-atmosphere module ( http://wicket.apache.org/2012/05/29/wicket-6.0.0-beta2-released.html) 2012/5/30 Douglas Ferguson the...@gmail.com Anybody doing any ajax push stuff using wicket

wicket 1.6

2012-06-04 Thread Douglas Ferguson
Is there a projected release date for wicket 1.6? Just curious because I'm starting a new project and am trying to decide if I should start it using 1.6. Douglas - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Re: wicket 1.6

2012-06-05 Thread Douglas Ferguson
... On Mon, Jun 4, 2012 at 5:29 PM, Douglas Ferguson the...@gmail.com wrote: Is there a projected release date for wicket 1.6? Just curious because I'm starting a new project and am trying to decide if I should start it using 1.6. Douglas

Autocomplete when Converter not available/possible

2012-06-18 Thread Douglas Ferguson
Does anybody have a good example of using the AutoCompleteField when a Converter is not available? For example, I have a UserAccount object. I want to display Joe Blow with a photo on my auto suggest. But the string Joe Blow isn't enough information for a converter to convert back to a

Models and Session Size

2012-06-19 Thread Douglas Ferguson
I've been working in wicket for awhile now. I was just reading this post last night. http://www.small-improvements.com/10-things-about-apache-wicket-i-love/wicket:pageMapName/wicket-0 I was intrigued by the comment that more extensive use of Model would reduce session size. Why would this

Wicket Events

2012-06-19 Thread Douglas Ferguson
Anybody have a good pattern for using Events without having lots of instanceOf, if/else, or switch statements? - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: Wicket Events

2012-06-19 Thread Douglas Ferguson
Where's the source repository located? On Jun 19, 2012, at 2:20 PM, Martin Grigorov wrote: See org.apache.wicket.EventDispatcherTest in wicket-core's tests On Tue, Jun 19, 2012 at 9:58 PM, Douglas Ferguson the...@gmail.com wrote: Anybody have a good pattern for using Events without having

Re: Models and Session Size

2012-06-19 Thread Douglas Ferguson
Yes.. LoadableDetachable makes more sense. Douglas On Jun 19, 2012, at 2:17 PM, Carl-Eric Menzel wrote: On Tue, 19 Jun 2012 14:01:13 -0500 Douglas Ferguson the...@gmail.com wrote: I was intrigued by the comment that more extensive use of Model would reduce session size. Why would

Re: wicket 1.6

2012-06-19 Thread Douglas Ferguson
any problems I promise I'll try to solve them as soon as possible. If there are no workarounds you may need to use 6.0-SNAPSHOT for your development until the next RC is released. On Tue, Jun 5, 2012 at 7:07 PM, Douglas Ferguson the...@gmail.com wrote: I would be deploying my app in a couple

Re: Wicket Events

2012-06-19 Thread Douglas Ferguson
, Jun 19, 2012 at 12:31 PM, Douglas Ferguson the...@gmail.com wrote: Where's the source repository located? On Jun 19, 2012, at 2:20 PM, Martin Grigorov wrote: See org.apache.wicket.EventDispatcherTest in wicket-core's tests On Tue, Jun 19, 2012 at 9:58 PM, Douglas Ferguson

Re: Wicket Events

2012-06-19 Thread Douglas Ferguson
component, IEvent? event) 116 { 117 invocationTimes++; 118 } 119 On Jun 19, 2012, at 2:20 PM, Martin Grigorov wrote: See org.apache.wicket.EventDispatcherTest in wicket-core's tests On Tue, Jun 19, 2012 at 9:58 PM, Douglas Ferguson the...@gmail.com

Re: Wicket Events

2012-06-19 Thread Douglas Ferguson
wrote: Wicket always sends ComponentEvent. The dynamic part is the event's payload. The test shows how to receive the payload in a type-safe way. On Tue, Jun 19, 2012 at 11:16 PM, Douglas Ferguson the...@gmail.com wrote: Ok.. So I took a look at it and it is ignoring the IEvent. I'm

Re: wicket 1.6

2012-06-19 Thread Douglas Ferguson
, 2012 at 11:13 PM, Douglas Ferguson the...@gmail.com wrote: Martin, You still up for fixing issues? We found one. ;) The auto complete text field throws a javascript here. Would you like me to post the details here? Douglas On Jun 5, 2012, at 11:15 AM, Martin Grigorov wrote: Hi

Re: Wicket Events

2012-06-19 Thread Douglas Ferguson
in Wicket. There is a default impl that uses casting of the payload and there is a way to setup your own impl that does it your way. See Jeremy's message in this thread for a solution that works as Google's one. On Tue, Jun 19, 2012 at 11:36 PM, Douglas Ferguson the...@gmail.com wrote: Yeah

Re: Wicket Events

2012-06-21 Thread Douglas Ferguson
I was able to get the EventDispatcher to work. I added an annotation and as well as an Enum with my EventTypes. It works quite nicely. Thanks for the tips. Douglas On Jun 19, 2012, at 7:15 PM, Douglas Ferguson wrote: Yeah.. when I read Jeremy's reply it was the kind of thing I was looking

1.6 - Verify Error - AbstractResourceStreamWriter

2012-07-05 Thread Douglas Ferguson
java.lang.VerifyError: (class: com/visiblehealth/ui/admin/reports/SQLReports, method: generateReport signature: (Ljava/io/File;)Lorg/apache/wicket/core/util/resource/AbstractResourceStreamWriter;) Wrong return type in function at java.lang.Class.getDeclaredConstructors0(Native Method)

AjaxCallThrottlingDecorator - 1.6

2012-07-09 Thread Douglas Ferguson
How do you throttle ajax calls in 1.6? Douglas - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Apache Wicket 6.0.0-beta3 is released

2012-07-18 Thread Douglas Ferguson
How long should it take for this to appear in maven central? I currently don't see it there... http://mvnrepository.com/artifact/org.apache.wicket/wicket-core On Jul 17, 2012, at 4:08 AM, Martijn Dashorst wrote: The Wicket team is proud to announce the third beta release of the Wicket 6.x

FormTester - wicket 1.6

2012-07-30 Thread Douglas Ferguson
We are trying to write some tests using FormTester. We are setting values on a text field and then submitting the form. The form is erroring out because the field is required. Does anybody have any ideas why the value is not getting set properly? Douglas

Re: FormTester - wicket 1.6

2012-07-31 Thread Douglas Ferguson
out and figure out what's causing the problem before dumping all that in your lap. Douglas On Jul 31, 2012, at 2:17 AM, Martin Grigorov mgrigo...@apache.org wrote: Show us some code. On Tue, Jul 31, 2012 at 1:50 AM, Douglas Ferguson the...@gmail.com wrote: We are trying to write some tests

sicket 6 beta3 - wicket 6

2012-09-27 Thread Douglas Ferguson
I just tried to upgrade from beta3 to wicket 6 and one of my main pages blows up with a vengeance. It's the typical error indicating that something is in the code but now the markup and it lists out almost every field! You guys have any idea what might cause this? Works fine under beta3...

Re: sicket 6 beta3 - wicket 6

2012-09-27 Thread Douglas Ferguson
it will be very hard to help you. On 27.09.2012, at 14:23, Douglas Ferguson the...@gmail.com wrote: I just tried to upgrade from beta3 to wicket 6 and one of my main pages blows up with a vengeance. It's the typical error indicating that something is in the code but now the markup

Re: sicket 6 beta3 - wicket 6

2012-09-27 Thread Douglas Ferguson
#authenticate() disappeared after 6.0.0-beta3. Affected me... Cheers, Jesse On 27/09/2012 14:41, Douglas Ferguson wrote: That may take some time, there are some layers.. I just was curious if there are any known issues from beta3 to the stable release. Douglas On Sep 27, 2012, at 7:36 AM

Re: wicket 6 beta3 - wicket 6

2012-09-29 Thread Douglas Ferguson
...@unknown.za.net wrote: WebSession#authenticate() disappeared after 6.0.0-beta3. Affected me... Cheers, Jesse On 27/09/2012 14:41, Douglas Ferguson wrote: That may take some time, there are some layers.. I just was curious if there are any known issues from beta3 to the stable release

download page

2012-10-11 Thread Douglas Ferguson
I've done downloads before in wicket by creating a resource stream, but this requires a user to click on a button or some other ajax. I'd like to create a page that will stream content back to the user based on parameters. This means I'd have bookmarkable urls for download and it would be

Can't post variables to a wicket page

2012-10-22 Thread Douglas Ferguson
I'm trying to support both get and post to a wicket page. When I do a post, the containterRequest object is reporting it as a GET and I can't seem to find my post variables. What am I missing? --- Douglas W. Ferguson Software Development Manager Escalation Point, Inc.

Re: Wicket Example

2017-10-30 Thread Douglas Ferguson
How do I get off this list? I've emailed users-unsubscr...@wicket.apache.org and I'm still on it. Could be an email alias thing. Can anybody help? ᐧ On Mon, Oct 30, 2017 at 3:49 PM, Andrea Del Bene wrote: > hi, > > use

<    1   2   3   4