Streaming a zip file then going back to previous BreadCrumbPanel

2012-03-21 Thread Josh Chappelle
Hi, I have a Wizard that is inside a BreadCrumbPanel. I have implemented a method in the onCancel that goes back to the previous BreadCrumbPanel. This is how it is implemented: ListIBreadCrumbParticipant participants = crumbModel.allBreadCrumbParticipants();

Adding a header contribution as the first in the head tag

2012-03-01 Thread Josh Chappelle
I'm trying to add an IE compatibility meta tag and it needs to be the first item in the head tag otherwise it will not work. I have a BasePage that I can just put it in the html and that works fine for the most part but I would like a way to set it in the Application class that way any page will

StalePageException with CryptoMapper

2012-02-03 Thread Josh Chappelle
I'm getting a org.apache.wicket.request.mapper.StalePageException when using the CryptoMapper and clicking on a menu item. My menu items are a wrapper for the yui library that I created. The way that I'm creating the ajax callback is via a behavior. Below is my behavior. It works when I don't use

RE: HttpsRequestCycleProcessor Configuration

2010-07-27 Thread Josh Chappelle
Thanks a lot for your help Russ. I was so caught up with the problem I didn't step back and think about having a dummy test page to isolate the SSL configuration on apache. I'll give that a try. Thanks again. Josh -Original Message- From: Russell Simpkins

HttpsRequestCycleProcessor Configuration

2010-07-26 Thread Josh Chappelle
Hi, My problem is not specific to wicket but I'm hoping that someone in the community has fought this battle before and is willing to lend a helping hand. I am using the HttpsRequestCycleProcessor and I only have the @RequireHttps annotation on one page, the registration page. I have apache

RE: NULL model on empty string?

2010-06-10 Thread Josh Chappelle
Call setConvertEmptyInputStringToNull(false) on your TextField. Josh -Original Message- From: Anna Simbirtsev [mailto:asimbirt...@gmail.com] Sent: Thursday, June 10, 2010 1:49 PM To: users@wicket.apache.org Subject: NULL model on empty string? Hi, I use CompoundPropertyModel for all

RE: NULL model on empty string?

2010-06-10 Thread Josh Chappelle
TextFieldInteger(guid, Integer.class)) ? It works if type is String. On Thu, Jun 10, 2010 at 3:03 PM, Josh Chappelle jchappe...@4redi.comwrote: Call setConvertEmptyInputStringToNull(false) on your TextField. Josh -Original Message- From: Anna Simbirtsev [mailto:asimbirt...@gmail.com] Sent

inmethod-grid filtering

2010-06-08 Thread Josh Chappelle
Hi, Has anyone added filtering capabilities to the inmethod-grid component? Thanks, Josh

RE: inmethod-grid filtering

2010-06-08 Thread Josh Chappelle
the inmethod term rigth now) that can do searches, it's not a top or bottom bar for inmethod grid, but it does do somesort of filtering.. What had you in mind? 2010/6/8 Josh Chappelle jchappe...@4redi.com: Hi, Has anyone added filtering capabilities to the inmethod-grid component? Thanks

TextField that renders a link

2010-06-04 Thread Josh Chappelle
Does anyone know of a TextField component or perhaps a Behavior that can be added to a TextField that will render a link when the user types a URL into it? Thanks, Josh

FileUpload inside two forms

2010-06-03 Thread Josh Chappelle
Hi, I have a generic FileUploadModal class that allows the user to upload files as long as it is not being used inside of another form. The FileUploadPanel that is the content of the FileUploadModal contains a Form. So when the modal is used inside a panel that already contains a form I get a

RE: Hibernate - OSIV

2010-03-31 Thread Josh Chappelle
What error are you getting? -Original Message- From: Jeffrey Schneller [mailto:jeffrey.schnel...@envisa.com] Sent: Wednesday, March 31, 2010 4:47 PM To: users@wicket.apache.org Subject: Hibernate - OSIV I think I have the OSIV filter setup correctly but I can't access any lazy loaded

RE: Checkbox Group

2010-03-29 Thread Josh Chappelle
Take a look at the Check and CheckGroup components. You can populate your list of items of unknown size with a ListView and put Check components inside. Then add your ListView to a CheckGroup. When the form is submitted the CheckGroup will have a collection of the items that were checked within

RE: Wicket and JEE6

2010-03-26 Thread Josh Chappelle
Mark, Try taking a look at the addComponentInstantiationListener method on the Application class. It takes one parameter of type IComponentInstantiationListener and that interface has one method which is onInstantiation(Component component). Every time a component gets instantiated it will be

RE: Wicket form data isn't received

2010-03-26 Thread Josh Chappelle
Bryan, Have you put a breakpoint in your onSubmit method of the form to see if it is getting to that point? If it isn't then make sure you don't have a validator failing and no feedback panel. I've made that mistake before. Thanks, Josh -Original Message- From: Bryan Montgomery

Application addRenderHeadListener causing error

2010-03-25 Thread Josh Chappelle
Hi, On one of our pages we are having a strange error. The page renders and a few seconds later a wicket error occurs. Below is the stack trace. In our Application class we are calling addRenderHeadListener for a jquery library and one for google. It works great in most cases but on one

RE: Application addRenderHeadListener causing error

2010-03-25 Thread Josh Chappelle
increased the request time and then we were sending two ajax requests at the same time on that particular page it increased the opportunity for a race condition in request processing.(only a guess) -Original Message- From: Josh Chappelle [mailto:jchappe...@4redi.com] Sent: Thursday, March 25

Palette Problem

2010-03-24 Thread Josh Chappelle
Hi, I'm having a problem that is about to drive me nuts. I have a Palette that won't display the selected values. I am able to reproduce my problem with a simple version so here it is: ListString current = new ArrayListString();

RE: Palette Problem

2010-03-24 Thread Josh Chappelle
? On Wed, Mar 24, 2010 at 2:58 PM, Josh Chappelle jchappe...@4redi.com wrote: Hi, I'm having a problem that is about to drive me nuts. I have a Palette that won't display the selected values. I am able to reproduce my problem with a simple version so here

RE: Help with integrating NTLM in wicket application

2010-03-24 Thread Josh Chappelle
. Any thoughts? I guess I'll try and compare the html generated to see if there is any difference. I'll also double check the program flow if the ntlm is called but the authentication fails. Thanks - Bryan. On Sun, Mar 21, 2010 at 9:17 PM, Josh Chappelle jchappe...@4redi.comwrote: Bryan, We

RE: Help with integrating NTLM in wicket application

2010-03-24 Thread Josh Chappelle
, Josh Chappelle jchappe...@4redi.comwrote: Bryan, Sorry for pointing you in the wrong direction. Below is the NTLMPage that we use. Notice that it redirects the user to the login page if it can't log them in through NTLM. I hope this helps. import java.io.IOException; import

RequestCycle infinite loop

2010-03-23 Thread Josh Chappelle
Hi, I have a BasePanel that has an html table in it. The subpanels all fill in the table rows. When I try to view the page I get the following error message: java.lang.IllegalStateException: Request processing executed 100 steps, which means it is probably in an infinite loop.

RE: Forms in a base class

2010-03-21 Thread Josh Chappelle
Jeremy, What is the setTransparentResolver(true) method? I tried to find it on the form component and I couldn't? I'm using wicket 1.4.7. Thanks, Josh -Original Message- From: Jeremy Thomerson [mailto:jer...@wickettraining.com] Sent: Sunday, March 21, 2010 7:40 PM To:

RE: Help with integrating NTLM in wicket application

2010-03-21 Thread Josh Chappelle
Bryan, We have an NTLMPage that we redirect the browser to. If there is no authorization header this is what we do. String auth = request.getHeader(Authorization); if (auth == null) { setRedirect(false);

Re: Help with integrating NTLM in wicket application

2010-03-20 Thread Josh Chappelle
Bryan, I'm out of town right now but when I get back to my computer I will send you our ntlm page code. We have an AuthorizationStrategy that redirects the user to NTLMPage and it handles all the header stuff like you are talking about. If I don't send it to you Sunday then email me to

Google Annotated Time Line

2010-03-17 Thread Josh Chappelle
Hi, I'm trying to get the google annotated time line to work in a wicket page. When I created a page with just the html and javascript it works. However, when I try to create a behavior that renders the javascript to the head it doesn't work. Here is a link to the google html and javascript:

RE: Wicket in the industry

2010-03-15 Thread Josh Chappelle
Hi, I work for a company that develops banking software and we use wicket for our software. Our software runs in house for the banks on their local intranet. We love wicket and its component oriented nature. I have load tested wicket with JMeter and I can't remember the exact measurements but I

Menu other than YUI

2010-03-15 Thread Josh Chappelle
Hi, I'm unable to get wicket-datetime DatePicker to work with the YUI menu for wicket 1.4.7. So it's either not upgrade to 1.4.7 or use a menu other than YUI. I noticed that the javascript for YUI in 1.4 was pretty bulky and a significant increase from 1.3 so I'm kind of ok with replacing it.

RE: datetime and yui clash

2010-03-15 Thread Josh Chappelle
In case anyone was wondering, this issue seems to be fixed with the latest snapshot of YUI that was released today. -Original Message- From: Josh Chappelle [mailto:jchappe...@4redi.com] Sent: Friday, March 12, 2010 3:48 PM To: users@wicket.apache.org Subject: RE: datetime and yui clash

datetime and yui clash

2010-03-12 Thread Josh Chappelle
Hi, I am upgrading our software to use wicket 1.4.7 and have run into an issue. We have a wicketstuff-yui menu that is using the 1.4.2 snapshot of yui. Then I have a DatePicker from the wicket-datetime jar added to a DateTextField. When I click the picker icon nothing happens. If I remove the

RE: datetime and yui clash

2010-03-12 Thread Josh Chappelle
This issue might be specific to IE8. I can't reproduce it in Chrome. I haven't tried others. Josh -Original Message- From: Josh Chappelle [mailto:jchappe...@4redi.com] Sent: Friday, March 12, 2010 12:36 PM To: users@wicket.apache.org Subject: datetime and yui clash Hi, I am

jwicket question

2010-03-11 Thread Josh Chappelle
Hi, Lately I've noticed more comments about jwicket. At my company we have a couple of pages that use the wicketstuff-dojo wiper effect. However, since that project is no longer being maintenanced(and I don't' think I will have the time to maintain it) I am thinking about adopting another

RE: jwicket question

2010-03-11 Thread Josh Chappelle
-Ursprüngliche Nachricht- Von: Josh Chappelle [mailto:jchappe...@4redi.com] Gesendet: Donnerstag, 11. März 2010 18:18 An: users@wicket.apache.org Betreff: jwicket question Hi, Lately I've noticed more comments about jwicket. At my company we have a couple of pages that use the wicketstuff

RE: jwicket question

2010-03-11 Thread Josh Chappelle
, Josh Chappelle wrote: Thanks Stefan I will. I will download jwicket and see how easy it is to phase out my wicketstuff-dojo components and replace them with jwicket. Josh -Original Message- From: Stefan Lindner [mailto:lind...@visionet.de] Sent: Thursday, March 11, 2010 11:34 AM

WicketStuff Dojo

2010-03-10 Thread Josh Chappelle
Hi, Is anyone maintaining the wicketstuff-dojo project anymore? If not then I can get the source code and try to get it working in 1.4 and commit the changes. If this is not the forum for wicket-stuff questions I apologize and please let me know where one is. Thanks, Josh

RE: WicketStuff Dojo

2010-03-10 Thread Josh Chappelle
in wicket-stuff? If not, provide your sf.net user ID and we can add you. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Mar 10, 2010 at 11:43 AM, Josh Chappelle jchappe...@4redi.comwrote: Hi, Is anyone maintaining the wicketstuff-dojo project anymore? If not then I can get

RE: WicketStuff Dojo

2010-03-10 Thread Josh Chappelle
://www.wickettraining.com On Wed, Mar 10, 2010 at 11:54 AM, Josh Chappelle jchappe...@4redi.comwrote: I am not. In fact I don't have a sf.net user id. How should I go about getting one? Josh -Original Message- From: Jeremy Thomerson [mailto:jer...@wickettraining.com] Sent: Wednesday, March 10, 2010 11

RE: WicketStuff Dojo

2010-03-10 Thread Josh Chappelle
, 2010 at 12:00 PM, Josh Chappelle jchappe...@4redi.comwrote: jchappelle - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Suggestion list

2010-03-10 Thread Josh Chappelle
Hi, I am trying to find a suggestion list component that works like a DropDownChoice but can also be edited like a TextField. I tried to use the wicketstuff-dojo component called DojoHtmlSuggestionList but it appears to have some bugs because the model value was not binding to my object. In

RE: Suggestion list

2010-03-10 Thread Josh Chappelle
with org.apache.wicket.extensions.ajax.markup.html.autocomplete.AutoCompleteTextF ieldT -igor On Wed, Mar 10, 2010 at 1:44 PM, Josh Chappelle jchappe...@4redi.com wrote: Hi, I am trying to find a suggestion list component that works like a DropDownChoice but can also be edited like a TextField. I tried

RE: Suggestion list

2010-03-10 Thread Josh Chappelle
Subject: Re: Suggestion list wicket ships with org.apache.wicket.extensions.ajax.markup.html.autocomplete.AutoCompleteTextF ieldT -igor On Wed, Mar 10, 2010 at 1:44 PM, Josh Chappelle jchappe...@4redi.com wrote: Hi, I am trying to find a suggestion list component that works like

AutoCompleteTextField bug

2010-03-10 Thread Josh Chappelle
Hi, It looks like there might be a bug with the AutoCompleteTextField component or it might be a browser bug in IE8. I'm using the AutoCompleteTextField with the constructor that takes just the id and I'm returning a list of strings in the getChoices(String input) method. However when I start

RE: AutoCompleteTextField bug

2010-03-10 Thread Josh Chappelle
I apologize. It looks like this is fixed in 1.3.7. Josh -Original Message- From: Josh Chappelle [mailto:jchappe...@4redi.com] Sent: Wednesday, March 10, 2010 4:17 PM To: users@wicket.apache.org Subject: AutoCompleteTextField bug Hi, It looks like there might be a bug

RE: mod_proxy + ssl + HttpsRequestCycleProcessor

2010-03-04 Thread Josh Chappelle
In your Application class you could check to see if you are running in Production or Development mode. If you are running in Development mode then use the HttpsRequestCycleProcessor. Otherwise use the default RequestCycleProcessor. Josh -Original Message- From: Istvan Soos

RE: [newbie] Wicket, Spring, Hibernate and transactions in views.

2010-03-02 Thread Josh Chappelle
If you aren't concerned with good design then I wouldn't worry about transactions at all. Especially if you are doing read only data retrieval. Once you get the code working the way you want you can always add transactions later and refactor the code into your service methods. That's the agile

Extended Form Question

2010-03-02 Thread Josh Chappelle
Hi, I have extended the Form component to include a visitor that adds some behaviors to required fields so that the validation errors are rendered next to the corresponding fields. My problem is that I have a form that has a form level validator that is not specific to a component. So I still

RE: Print friendly panel

2010-02-28 Thread Josh Chappelle
your page which css to use, you can say use this CSS for printing only. All transparent to the user. - Alex -Original Message- From: Josh Chappelle [mailto:jchappe...@4redi.com] Sent: Friday, February 26, 2010 4:09 PM To: users@wicket.apache.org Subject: Print friendly panel Hi

RE: Print friendly panel

2010-02-27 Thread Josh Chappelle
Thanks Michael, I actually got the popup to work by just putting target=_blank in the anchor tag. I didn't think about doing it your way. My main problem is rendering the component into a string as well as to the browser. Thanks for your help! Josh -Original Message- From: Michael

Print friendly panel

2010-02-26 Thread Josh Chappelle
Hi, Does anyone know of a suggested method to render a printer friendly panel to a separate browser window so that user's can print? The only thing I have found is the following article and it looks a little clunky. http://cwiki.apache.org/WICKET/rendering-panel-to-a-string.html

RE: TimePicker component?

2010-02-17 Thread Josh Chappelle
I would also like to know the answer to this. The only reason our team hasn't moved to 1.4 is because we have dependencies on some dojo projects but none of the ones we use work in 1.4. Josh -Original Message- From: Mauro Ciancio [mailto:maurocian...@gmail.com] Sent: Wednesday,

RE: Large number components and redering time

2010-02-17 Thread Josh Chappelle
Could you use a PageableListView or does that not fall within your business requirements? Josh -Original Message- From: d...@agentlab.de [mailto:d...@agentlab.de] Sent: Wednesday, February 17, 2010 12:08 PM To: users@wicket.apache.org Subject: Large number components and redering time

RE: Modal window closes, parent window needs to be refreshed

2010-02-17 Thread Josh Chappelle
The onClose method of the WindowClosedCallback takes an AjaxRequestTarget parameter. Just call AjaxRequestTarget.addComponent() and pass it the panel that you need refreshed. Josh -Original Message- From: Anna Simbirtsev [mailto:asimbirt...@gmail.com] Sent: Wednesday, February 17, 2010

Palette selected item

2010-02-12 Thread Josh Chappelle
I have a Palette component that I need to be able to fire an event when an item on the right side(selected side) has been clicked. Additionally I need to know what item was clicked because I'm going to be populating another panel based on that click. I have created my own component called

dojo 1.4

2010-02-04 Thread Josh Chappelle
I've searched everywhere and can't find the wicket 1.4 compatible dojo jar file. There isn't one in the maven repository. Has one been developed? If so can someone point me in the right direction? Thanks, Josh

@SpringBean serialization issue

2009-06-03 Thread Josh Chappelle
I have recently started using the @SpringBean annotation to retrieve DAO objects in my Panel classes. I have noticed that if the DAO is not serializable then I get a PageExpiredException when I leave that page and hit the back button. According to the wiki on the @SpringBean annotation the objects