RE: Appending to CSS url to prevent caching.

2012-10-03 Thread Jeffrey Schneller
You could just add your own cache buster. You could do something like: String cachebuster = something that will always be unique - maybe time stamp; response.renderCSSReference(style/theme.css? + cachebuster); not sure if this will bust the cache because the file is really the same. -or-

RE: Anybody is having problems with Wicket and Facebook Like button?

2012-07-05 Thread Jeffrey Schneller
We have been using the Like button on one of our client's sites. I have not been told of or noticed any problems with it. I believe we are removing the JSESSIONID as well. -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Thursday, July 05, 2012 2:47 PM To:

RE: Redirect to Wicket page with 301 Moved Permanently

2012-05-14 Thread Jeffrey Schneller
Are you using Apache HTTPD in front of your app server? If so, you can just use a Rewrite Rule to send the 301 redirect with the new URL. You may want to look into your app server to see if url rewriting is an option. -Original Message- From: jarnis

RE: Built with Wicket: showcases for Wicket applications

2012-04-12 Thread Jeffrey Schneller
Thanks for the reminder. FYI... whoever built ZipGrocery - you are running your site with the ajax debugger still on. -Original Message- From: Martijn Dashorst [mailto:martijn.dasho...@gmail.com] Sent: Thursday, April 12, 2012 5:49 AM To: users@wicket.apache.org Subject: Built

wicketstuff.org - down

2012-04-03 Thread Jeffrey Schneller
Wicketstuff.org appears to be down. Any ideas on when it will be back up?

RE: Favicon best practice

2012-03-30 Thread Jeffrey Schneller
I just put the favicon.ico at the root of the WebContent directory and don't specify anything in the HTML. I believe browsers look in the root unless specified differently in the html (like you are doing). BTW... app is on Apache + Tomcat and runs as the root app of the tomcat instance.

RE: Repalcement of servlets in wicket.

2012-03-29 Thread Jeffrey Schneller
I would stop using 1.4.10 as it is very old at this point. If you are just starting out I would use 1.5.x where x is the latest revision. If you need to stay in the 1.4.x world then I would go with 1.4.20 which I think is the most current version. -Original Message- From:

Event handling and swapping panels

2012-03-28 Thread Jeffrey Schneller
I want to swap panels using the event model in 1.5. This is very similar to the panel swapping code (wicket 1.4.x) found in the Apache Wicket Cookbook but uses the event model instead. The problem is I can't set the panel equal to its replacement, like you would in 1.4.x. This is found on

RE: Event handling and swapping panels

2012-03-28 Thread Jeffrey Schneller
OuterPanelClass.this.panel.replaceWith(replacement); OuterPanelClass.this.panel=replacement; -igor On Wed, Mar 28, 2012 at 11:33 AM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: I want to swap panels using the event model in 1.5.  This is very similar to the panel swapping code (wicket 1.4

RE: Event handling and swapping panels

2012-03-28 Thread Jeffrey Schneller
Subject: Re: Event handling and swapping panels paste your entire panel/page class... -igor On Wed, Mar 28, 2012 at 12:15 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: Thanks.  But what does OuterPanelClass refer to in my example? I don't think either of these are right

RE: Event handling and swapping panels

2012-03-28 Thread Jeffrey Schneller
, March 28, 2012 3:49 PM To: users@wicket.apache.org Subject: Re: Event handling and swapping panels that is correct -igor On Wed, Mar 28, 2012 at 12:41 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: Here it is: public class Admin extends WebPage {        private Component

RE: Event handling and swapping panels

2012-03-28 Thread Jeffrey Schneller
); add(p3Link); } } François Le 28 mars 2012 à 22:35, Jeffrey Schneller a écrit : Only problem is that it is not working. The panels never update to the new panels. I can see that the onEvent fires as the javascript alert is shown. But the javascript is only shown the first

LDM - correct construction

2012-03-21 Thread Jeffrey Schneller
Is this the correct construction of a LDM where I need to use a service bean to access my database? The IMyService bean is injected on the page and passed to the LDM. Does this make the LDM hold a reference to the IMyService bean and possibly keep a connection from being put back into the

RE: LDM - correct construction

2012-03-21 Thread Jeffrey Schneller
an issue. Does your service manage its own connections? If so, is it a singleton? Other than that, I'd guess there's a bug in your transaction management such that a transaction gets started but not finished. HTH, Dan On Wed, Mar 21, 2012 at 1:45 PM, Jeffrey Schneller jeffrey.schnel

RE: LDM - correct construction

2012-03-21 Thread Jeffrey Schneller
PM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: My service implementation uses hibernate dao objects which should be managing its own connections via the c3p0 connection pool. All my service objects and Dao objects are marked as singletons in my Spring applicationContext.xml

Grouped ListView

2012-03-12 Thread Jeffrey Schneller
I am looking to create a grouped listview where each group only contains a specific number of items. For example: I have a list of 5 items and I want each group to have 3 items in it. I would expect the html to look something like the following: div id=list div class=group

RE: Wicket in a Dot Net World

2012-02-08 Thread Jeffrey Schneller
I know it is overly simplistic but you can almost think of the .aspx and the .aspx.c code-behind file as the .html and the .java file in Wicket if it will make you feel any better. It is not that simple but it is quick way that our junior .NET developers can relate to what the Java folks do in

RE: Wizard finish button prevent double click

2011-11-16 Thread Jeffrey Schneller
'); } -Original Message- From: Jeffrey Schneller [mailto:jeffrey.schnel...@envisa.com] Sent: Tuesday, November 15, 2011 6:41 PM To: users@wicket.apache.org Subject: RE: Wizard finish button prevent double click I have. I even added a breakpoint in my onFinish code to be sure

RE: Wizard finish button prevent double click

2011-11-16 Thread Jeffrey Schneller
at 5:50 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: Any additional thoughts on this. I tried just putting an onclick on the button itself.  But it still prevents the form from submitting.  If I remove the onclick then everything works fine.  This should not be this hard

Wizard finish button prevent double click

2011-11-15 Thread Jeffrey Schneller
I was using version 1.4.3 and recently updated to 1.4.19. I am trying to prevent the double click of the Finish button causing a double submit on the finish step of a wizard. Was this resolved between version 1.4.3 and 1.4.19? Hopefully it was. If not... There was mention of this in the

RE: Wizard finish button prevent double click

2011-11-15 Thread Jeffrey Schneller
...@gmail.com] Sent: Tuesday, November 15, 2011 6:34 PM To: users@wicket.apache.org Subject: Re: Wizard finish button prevent double click with jquery have you tried saying $(button).attr(disabled, disabled) ? -igor On Tue, Nov 15, 2011 at 3:29 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com

RE: 1.5.1

2011-10-07 Thread Jeffrey Schneller
Yes, that would be very nice to have an improved exception message. I ran into this problem as well during a migration to 1.5.1 and it caused lots of wasted time trying to find the problem. On a side note 1.5.1 is awesome. The migration was relatively painless. -Original Message-

Migration to 1.5.1 -- unable to render page because of head tag

2011-10-03 Thread Jeffrey Schneller
Been migrating an app to 1.5.1 and wanted to test a simple first page. I continue to run into problems rendering the page. I continue to get the following exception: Caused by: java.text.ParseException: No matching close bracket at (line 196, column 27) at

RE: Migration to 1.5.1 -- unable to render page because of head tag

2011-10-03 Thread Jeffrey Schneller
I solved my problem. I had a double quote in the title tag. Removing that resolved the problem. -Original Message- From: Jeffrey Schneller [mailto:jeffrey.schnel...@envisa.com] Sent: Monday, October 03, 2011 3:18 PM To: users@wicket.apache.org Subject: Migration to 1.5.1 -- unable

Version 1.5 event model

2011-10-03 Thread Jeffrey Schneller
I am currently converting an app to version 1.5.1 and am starting to look into/work with the event model. What is the suggested approach for using the event model? Should all Ajax be moved to the event model (anywhere where in 1.4 the code had target.addComponent or target.addJavascript calls)?

CSS and JS references in wicket 1.4.18

2011-09-28 Thread Jeffrey Schneller
I know there is a current thread discussing how to remove the wicket-ver-XXX from the url for a js file. I was wondering if there was a way to include the wicket-ver-XXX for all CSS and JS references in wicket 1.4.18? I am sure it is probably something simple that I am overlooking.

RE: E-commerce site built on Wicket

2011-07-21 Thread Jeffrey Schneller
It is using Daisy as a CMS but mostly just to store content in a JCR for easy access to place on the pages where needed. It also allows the business users to modify content on the fly. The site itself was coded straight up. -Original Message- From: Arjun Dhar [mailto:dhar...@yahoo.com]

E-commerce site built on Wicket

2011-07-20 Thread Jeffrey Schneller
Wanted to let the user-group know about another successful site built with Wicket which was launched about 1.5 years ago. I am just getting around to letting the usergroup know about it, sorry for the delay. The url for the site is: http://www.stoneside.com. The site is a consumer

BookmarkableLink to download a CSV file

2011-07-13 Thread Jeffrey Schneller
I want to have a link that when hit will download a csv file. I would prefer to use a Page or a component that I can use the @SpringBean notation on so the csv file data can be retrieved via my service layer beans. I can generate the file using a WebPage with the following in my constructor

RE: HybridUrlCodingStrategy SEO

2011-06-21 Thread Jeffrey Schneller
Try adding rel=nofollow to the ajax links. This should tell google not to follow the link. We have had pretty good results using this. Other spiders do not recognize this so some indexers may still hit those links. -Original Message- From: Phil Franken

RE: WicketRuntimeException

2011-06-08 Thread Jeffrey Schneller
:20 AM, Martin Grigorov mgrigo...@apache.org wrote: On Wed, Jun 8, 2011 at 7:00 AM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: I have started to see more and more of the following exception when users are using the wicket app. org.apache.wicket.WicketRuntimeException: After 1

RE: WicketRuntimeException

2011-06-08 Thread Jeffrey Schneller
This is the wrong thread. I bet there is another one with longer stack. On Wed, Jun 8, 2011 at 3:27 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: Thanks for the idea of using kill -3 pid I don't see the page in the stack trace which is below, unless it is the line I have started

WicketRuntimeException

2011-06-07 Thread Jeffrey Schneller
I have started to see more and more of the following exception when users are using the wicket app. org.apache.wicket.WicketRuntimeException: After 1 minute the Pagemap null is still locked by: Thread[TP-Processor24,5,main], giving up trying to get the page for path: 4:products:0:prodBuyLink

RE: Color Picker

2011-03-22 Thread Jeffrey Schneller
We use the same one as well. As Martin stated it is mostly just plug and play. Jeff -Original Message- From: Martin Makundi [mailto:martin.maku...@koodaripalvelut.com] Sent: Tuesday, March 22, 2011 1:45 PM To: users@wicket.apache.org Subject: Re: Color Picker Hi! I myself have used

wicket - tomcat - apache - haproxy

2011-03-14 Thread Jeffrey Schneller
I am trying to setup my environment so that HAProxy sits in front of my apache server so I can turn the server off and send requests to a different site without the user knowing. [ie... like apple does when they are refreshing their catalog/site the morning of a new product launch]. I have

DiskPageStore - Error FileNotFoundException

2011-03-04 Thread Jeffrey Schneller
Hi... my site in production has been running and after our latest code change we started to get the error below after a few days. It appears it is something to do with wicket's PageMap. In the past this error would come up after weeks or months of the app running [we were re-starting tomcat

Ajax Response xml showing in browser

2011-01-23 Thread Jeffrey Schneller
Got an odd issue occurring where the Ajax Response xml is showing in the browser rather than modifying the DOM of the page as it usually does. The scenario is the following: My Login page is abstract and has an abstract method called onLoginSuccess. When the login is successful we call

Page mounting

2010-12-15 Thread Jeffrey Schneller
I think this was discussed here but I can't seems to find it so I will ask again. I would like to mount a page Login to Login.class. I know how to do this and have it working. Now I would like to mount a page called AdminLogin to Login.class but also pass a parameter to Login.class so

robots.txt wicket urls

2010-10-12 Thread Jeffrey Schneller
How can I add an entry to robots.txt for a page of my site that is not currently mounted and cannot be made bookmarkable. The url is the wicket url of ?wicket:interface. I guess I could say block everything that contains ?wicket:interface but that seems kind of brute force. I tried using

RE: robots.txt wicket urls

2010-10-12 Thread Jeffrey Schneller
the ., that way a new version of the page will get created. -igor On Tue, Oct 12, 2010 at 8:30 AM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: How can I add an entry to robots.txt for a page of my site that is not currently mounted and cannot be made bookmarkable.  The url

Logging sessionId for every log event

2010-09-16 Thread Jeffrey Schneller
I am trying to log the session id with every log event so that I can trace a visitors steps in the log file. I am using log4j and was hoping I could use either the NDC or MDC. I am not able to figure out where to push the session id into the context and pop it out of the context when using NDC.

RE: ModalWIndow and update of jQuery component

2010-08-09 Thread Jeffrey Schneller
Try using AppendJavascript on the target of the wicket ajax link/button that shows the ModalWindow. -Original Message- From: zoran [mailto:jeremy...@gmail.com] Sent: Monday, August 09, 2010 9:55 PM To: users@wicket.apache.org Subject: ModalWIndow and update of jQuery component Hi,

RE: Encrypt Form Fields Using JS

2010-08-03 Thread Jeffrey Schneller
Can you create the text field and a hidden text field and have some javascript that validates as the user types or an update link next to the field? Once the entire SSN is entered or the link is pressed then hash the ssn and store in the hidden text field. Once hashed, overwrite the value in the

RE: Clean URLs without /?wicket:interface=:0:::: stuff - is it possible?

2010-07-21 Thread Jeffrey Schneller
Look into page mounting, BookmarkablePageLink mount(new BookmarkablePageRequestTargetUrlCodingStrategy(nicename, your.package.PageName.class, null)); BookmarkablePageLink nicenameLink = new BookmarkablePageLink(nicename_link, your.package.PageName.class); -Original Message- From:

Submitting form via AJAX over SSL - RESEND

2010-07-20 Thread Jeffrey Schneller
How can I submit a form via AJAX over SSL? I have a login form that appears via Ajax and I want the form submission to be under SSL when it is submitted via AJAX. How can I go about doing this? Thanks. - To

Submitting form via AJAX over SSL

2010-07-19 Thread Jeffrey Schneller
How can I submit a form via AJAX over SSL? I have a login form that appears via Ajax and I want the form submission to be under SSL when it is submitted via AJAX. How can I go about doing this? Thanks.

Panel under https

2010-07-14 Thread Jeffrey Schneller
I have a panel which contains a form on my page that is shown as a modal window via JQuery. The page itself is not under https but I would like the form to be submitted via SSL. The form is submitted via an IndicatingAjaxButton. How can I make the form submitted via https but not have the rest

AjaxLink that forces to login page before continuing

2010-07-07 Thread Jeffrey Schneller
I am looking for a way to have an AjaxLink or a regular link do the following: User clicks on link 1. If not logged in then show login page and allow user to login and then continue with #2 2. Perform some business logic 3. Show a message [if ajaxlink] or send to a page

RE: Interstitial window prompt then open a new window

2010-04-16 Thread Jeffrey Schneller
You may want to look into this. I am using this to send a user to page off our site via a link. Link myLink = new Link(myLink) { @Override public void onClick() { String url = http://your_url;;

Wicket Wiki

2010-04-14 Thread Jeffrey Schneller
Any ideas on when the Wicket Wiki will be back up? http://cwiki.apache.org/WICKET Thanks.

LoadableDetachable Models

2010-04-05 Thread Jeffrey Schneller
I am having issues with LDM, Hibernate lazy loaded lists, and ajax. I create a CompoundPropertyModel of a LDM and set that as the default model for the page. I then pass the model to the form and to a custom component in the form. The custom component is a list editor. Basically a ListView

RE: Hibernate - OSIV

2010-04-01 Thread Jeffrey Schneller
: Josh Chappelle [mailto:jchappe...@4redi.com] Sent: Wednesday, March 31, 2010 7:01 PM To: users@wicket.apache.org Subject: RE: Hibernate - OSIV What error are you getting? -Original Message- From: Jeffrey Schneller [mailto:jeffrey.schnel...@envisa.com] Sent: Wednesday, March 31, 2010 4

RE: Hibernate - OSIV

2010-04-01 Thread Jeffrey Schneller
, Apr 1, 2010 at 4:25 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: So by using the OSIV, I am out of luck?  Any ideas? -Original Message- From: James Carman [mailto:jcar...@carmanconsulting.com] Sent: Thursday, April 01, 2010 3:59 PM To: users@wicket.apache.org Subject

Hibernate - OSIV

2010-03-31 Thread Jeffrey Schneller
I think I have the OSIV filter setup correctly but I can't access any lazy loaded properties of my objects. I am not even between requests when this is happening. Does anyone have any ideas? I can't seem to figure this out. I have looked at OSIV in Spring and OSIV in Wicket. I can't seem

RE: Hibernate - OSIV

2010-03-31 Thread Jeffrey Schneller
...@carmanconsulting.com] On Behalf Of James Carman Sent: Wednesday, March 31, 2010 5:59 PM To: users@wicket.apache.org Subject: Re: Hibernate - OSIV Loadabledetachablemodel? On Mar 31, 2010 5:47 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: I think I have the OSIV filter setup correctly but I can't

Modal window issue

2010-03-12 Thread Jeffrey Schneller
I am running into a very odd problem with modal windows. The problem occurs in Firefox and not in IE7. I have a list of links which each display a modal window to create a different type of item. One of the links(call it item A) brings up a modal with the same links so you can create a

Palette filtering available list

2010-03-09 Thread Jeffrey Schneller
How can I filter the available list in a palette? I have a dropdown to specify the filter and I can retrieve the filtered list from my data access. How do I set the available list in the palette to be my new filtered list? Here is my code for creating the palette and also the filter button

RE: Wicket used for mobile.walmart.com

2010-02-23 Thread Jeffrey Schneller
Joachim, Thanks for this information. It shows that we made the right choice with Wicket for a new retail site. Also thank you for posting your components as open source. Do you have any examples of how these components can and should be used. In particular the jofilter,

Wizard busy indicators

2010-01-26 Thread Jeffrey Schneller
I am trying to figure out how I could add a busy indicator to my wizard so that when transitioning between steps the busy indicator appears. The transition between steps in my wizard may take a long time. 1.How could this be done with just Wicket? 2. How could this be done

RE: Wizard busy indicators

2010-01-26 Thread Jeffrey Schneller
-for-both-ajax-and-non-ajax-submits.html ** Martin 2010/1/26 Jeffrey Schneller jeffrey.schnel...@envisa.com: I am trying to figure out how I could add a busy indicator to my wizard so that when transitioning between  steps the busy indicator appears. The transition between steps in my wizard may

RE: The Field 'emailInput' is required

2010-01-21 Thread Jeffrey Schneller
Actually, this is how you would do it. Or at least how I did it in the past. If you call setLabel on the input component and the value you pass to set label can come from the xml file based on the language using the StringResourceModel. Example: Java Code (myform.java): RequiredTextField

Panel and Model inside of a wizard

2010-01-19 Thread Jeffrey Schneller
I am trying to figure out why a panel in a step of my wizard is not showing the correct data after an Ajax call. The step contains a re-usable panel (TotalPanel) for displaying information from the wizard that is backing the model.The problem is the values in the TotalPanel never reflect the

RE: Panel and Model inside of a wizard

2010-01-19 Thread Jeffrey Schneller
change its values or is it replaced by another object after an AJAX request? Sven Jeffrey Schneller wrote: I am trying to figure out why a panel in a step of my wizard is not showing the correct data after an Ajax call. The step contains a re-usable panel (TotalPanel) for displaying information

RE: Help with Wicket Adoption Numbers

2010-01-08 Thread Jeffrey Schneller
Lester, While I can't show actual numbers that speak to adoption rate, we struggled with the same question. In the end we decided that it made sense and in the past 5 months have developed and deployed a web application for one of our clients and are 1.5 months into development for another

Orderable ListView

2009-12-16 Thread Jeffrey Schneller
I am trying to create what is easily described as the right half of the Palette. The following functionality needed is: 1. Add items to the list via AJAX 2. Move an individual item either up or down in the list 3. Persist the ordered list to the model so the form has the

Palette - adding available choice via AJAX

2009-12-11 Thread Jeffrey Schneller
I have a palette defined with a set of available choices. I can move those choices to the right into the selected choices. On my page I have a modal popup that can be launched to add a custom choice. The choice is added to the available choices in the palette but the selected choices are reset.

Palette adding choices

2009-12-09 Thread Jeffrey Schneller
I have a palette defined with a set of available choices. I can move those choices to the right into the selected choices. On my page I have a modal popup that can be launched to add a custom choice. The choice is added to the available choices in the palette but the selected choices are reset.

Wicket + Spring + Hibernate - Wicket-In-Action

2009-11-16 Thread Jeffrey Schneller
At the link[1] it describes how to configure wicket to use Spring and Hibernate. In the applicationContext.xml file there is reference to a n interceptor bean. What is this interceptor bean? What is the definition of this bean? Everything else seems to make sense. Also how would one move

RE: OT: Relational database + Hibenate vs Content Repository (Jackrabbit)

2009-11-12 Thread Jeffrey Schneller
I would be interested in learning what everyone thinks about this. I am planning on using a relational db as described below for things like users, roles, and other relational type things. I am planning on using a JCR for content based things like comments, descriptions, etc... The problem is I

RE: OT: Relational database + Hibenate vs Content Repository (Jackrabbit)

2009-11-12 Thread Jeffrey Schneller
value at this time last week? What is the ratio between the cost of A and the number of B per day? etc. So yes, a blog is perfect for a cms. Most of the work that is central to a given organization is not. Cheers, Scott On Thu, Nov 12, 2009 at 6:25 AM, Jeffrey Schneller jeffrey.schnel

RE: Replacing a panel with another panel

2009-10-29 Thread Jeffrey Schneller
{ component A; void onclick() { component B=new something(A.getId()); A.replaceWith(B); A=B; } } the A=B is what you are missing. -igor On Wed, Oct 28, 2009 at 7:06 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: So how would I reference B rather than A on all

RE: Wicket and JQuery

2009-10-28 Thread Jeffrey Schneller
you might have to work hard on it. ** Marin 2009/10/27 Jeremy Thomerson jer...@wickettraining.com: I'd suggest only using jQuery for the UI effects and let Wicket do the AJAX. -- Jeremy Thomerson http://www.wickettraining.com On Tue, Oct 27, 2009 at 4:06 PM, Jeffrey Schneller

RE: Wicket and JQuery

2009-10-28 Thread Jeffrey Schneller
that. Hope this helps Regards - Richard Wilkinson Developer, jWeekend: OO Java Technologies - Development and Training http://jWeekend.com Jeffrey Schneller wrote: I am trying to determine how to use Wicket and JQuery. I would prefer not using wiQuery or similar. I would like to just include

Replacing a panel with another panel

2009-10-28 Thread Jeffrey Schneller
I am trying to replace a panel with another panel. The replacement works the first time. The next time I click on the replacement link, I get an exception. java.lang.IllegalStateException: This method can only be called on a component that has already been added to its parent. You will

RE: Replacing a panel with another panel

2009-10-28 Thread Jeffrey Schneller
So how would I reference B rather than A on all subsequent calls after the first. Is it as simple as checking to see if A does not have some property set? Then just use an if/then/else statement to use the correct panel. Thanks. -Original Message- From: Eelco Hillenius

Wicket and JQuery

2009-10-27 Thread Jeffrey Schneller
I am trying to determine how to use Wicket and JQuery. I would prefer not using wiQuery or similar. I would like to just include the jQuery libraries in my html and then use jQuery as javascript and not wrap everything in java on the server side to generate the client code. How would one go

Date Validation - message formatting

2009-10-23 Thread Jeffrey Schneller
I looked around and saw various discussions on how to format the date for the error message in the DateValidator. Was there a fix for this? I am using DateValidator.minimum and I would like the date that is the minimum to be formatted with just MMM-dd- or dd-MMM- based on the locale.

DateValidator - formatting date in the error message

2009-10-22 Thread Jeffrey Schneller
I looked around and saw various discussions on how to format the date for the error message in the DateValidator. Was there a fix for this? I am using DateValidator.minimum and I would like the date that is the minimum to be formatted with just MMM-dd- or dd-MMM- based on the locale.

AjaxFallbackDefaultDataTable - modifying look

2009-10-20 Thread Jeffrey Schneller
I am using the AjaxFallbackDefaultDataTable for displaying a data table on my page. I have everything working [displaying of data, sorting columns. Paging]. I know would like to change the look and feel of the data table. I would like to be able to change the navigation toolbar so that the

RE: AjaxFallbackDefaultDataTable - modifying look

2009-10-20 Thread Jeffrey Schneller
version of the data table, create one yourself. -igor On Tue, Oct 20, 2009 at 10:48 AM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: I am using the AjaxFallbackDefaultDataTable for displaying a data table on my page.  I have everything working [displaying of data, sorting columns. Paging

RE: AjaxFallbackDefaultDataTable - modifying look

2009-10-20 Thread Jeffrey Schneller
example of how to create an DataTable? you can use the AjaxFallbackDefaultDataTable as an example :) On Tue, Oct 20, 2009 at 4:00 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: Fair enough. Is there an example of how one should be created? -Original Message- From: Igor

Localization of values coming from my Model

2009-10-16 Thread Jeffrey Schneller
I am trying to display a page using my CompoundPropertyModel however some of the values coming from the model need to be localized before displaying to the user. This is being done inside of a wizard step. For example: My model has the following properties String gender boolean

RE: Localization of values coming from my Model

2009-10-16 Thread Jeffrey Schneller
implementation of CompoundPropertyModel... -Original Message- From: Jeffrey Schneller [mailto:jeffrey.schnel...@envisa.com] Sent: Friday, October 16, 2009 4:36 PM To: users@wicket.apache.org Subject: Localization of values coming from my Model I am trying to display a page using my

RE: Localization of values coming from my Model

2009-10-16 Thread Jeffrey Schneller
expect string which is supposed to be resource key to find localization in resource bundle. I recommend you to read http://cwiki.apache.org/WICKET/localization-and-skinning-of-applications .html. -Original Message- From: Jeffrey Schneller [mailto:jeffrey.schnel...@envisa.com] I tried

Wizard step causing an infinite loop

2009-10-12 Thread Jeffrey Schneller
I have a wizard and a wizard step. The wizard step is causing the wizard to go into an infinite loop. The loop starts way back at where the wizard is added to the page itself. I basically have a one step wizard. Now, I also have another step and if I add that step to the wizard and remove the

RE: Wizard step causing an infinite loop

2009-10-12 Thread Jeffrey Schneller
an infinite loop creating a quickstart that reproduces this behavior will help us help you. otherwise we would have to slaughter a chicken and wave it around. -igor On Mon, Oct 12, 2009 at 8:12 AM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: I have a wizard and a wizard step.  The wizard

RE: Wizard step causing an infinite loop

2009-10-12 Thread Jeffrey Schneller
/tr /table /span /div -Original Message- From: Jeffrey Schneller [mailto:jeffrey.schnel...@envisa.com] Sent: Monday, October 12, 2009 12:00 PM To: users

RE: Showing Modal window within a wizard step

2009-10-09 Thread Jeffrey Schneller
or persist a partially-completed model object to the data store on every request. Hope this helps! -- Jeremy Thomerson http://www.wickettraining.com On Thu, Oct 8, 2009 at 3:43 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: I am completely lost. I have no idea what this means. How

Modal inside a WizardStep

2009-10-09 Thread Jeffrey Schneller
I have a modal inside a wizard step. The modal is displaying and showing data. The modal is using a panel and not a page. The panel for the modal contains a form with text fields. The wizard step contains labels. I want to have a save and a cancel button in the modal. The save should take

RE: Modal inside a WizardStep

2009-10-09 Thread Jeffrey Schneller
modal -- Jeremy Thomerson http://www.wickettraining.com On Fri, Oct 9, 2009 at 11:24 AM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: I have a modal inside a wizard step. The modal is displaying and showing data. The modal is using a panel and not a page. The panel

RE: Showing Modal window within a wizard step

2009-10-09 Thread Jeffrey Schneller
Thanks for the example. It makes perfect sense now that I see it. I can even run the sample as its own project and see it working. Now, I took your example and put it into my project's codebase and the submit button in the modal panel does not cause the form to be submitted. Obviously I have

RE: Showing Modal window within a wizard step

2009-10-09 Thread Jeffrey Schneller
that is used. So close, yet still so far from working -Original Message- From: Jeffrey Schneller [mailto:jeffrey.schnel...@envisa.com] Sent: Friday, October 09, 2009 3:04 PM To: users@wicket.apache.org Subject: RE: Showing Modal window within a wizard step Thanks for the example

RE: Showing Modal window within a wizard step

2009-10-09 Thread Jeffrey Schneller
. The messages are never shown. Ideas? -Original Message- From: Jeffrey Schneller [mailto:jeffrey.schnel...@envisa.com] Sent: Friday, October 09, 2009 3:21 PM To: users@wicket.apache.org Subject: RE: Showing Modal window within a wizard step The only difference I can see in the code

RE: Showing Modal window within a wizard step

2009-10-09 Thread Jeffrey Schneller
...@wickettraining.com wrote: Sorry - typo on that step. The intent was that you use new Model(model.getObject()) to pull an object out of any potential loadable / detachable model that may be passed in. -- Jeremy Thomerson http://www.wickettraining.com On Fri, Oct 9, 2009 at 9:09 AM, Jeffrey Schneller

RE: Showing Modal window within a wizard step

2009-10-08 Thread Jeffrey Schneller
, the wiki example refers to an chooserPanel, that is not the case of your editorPanel. Simple use the same model on step 1 on your Modal window. On Wed, Oct 7, 2009 at 5:19 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: I am trying to show a modal window within a wizard step showing

RE: Showing Modal window within a wizard step

2009-10-08 Thread Jeffrey Schneller
Hi Jeffrey, the wiki example refers to an chooserPanel, that is not the case of your editorPanel. Simple use the same model on step 1 on your Modal window. On Wed, Oct 7, 2009 at 5:19 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: I am trying to show a modal window within

RE: Showing Modal window within a wizard step

2009-10-08 Thread Jeffrey Schneller
We are using wicket to have clean html void of jsp tags. Because they cause maintenance problems as the sites evolve over time. Wicket was suggested as a possible solution for this. Which it is but the lack of decent documentation/examples of real world issues is getting to be an issue.

RE: Showing Modal window within a wizard step

2009-10-08 Thread Jeffrey Schneller
was necessary to I understand what was happening... any way: https://issues.apache.org/jira/browse/WICKET-2515 On Thu, Oct 8, 2009 at 2:32 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: We are using wicket to have clean html void of jsp tags. Because they cause maintenance problems

Storing entity object in session - how to do it?

2009-10-07 Thread Jeffrey Schneller
Looking through the archives I saw some posts that said you should not store entity objects [for example object coming from hibernate] in the session. This makes sense to me as I just hit the problem. The archives gave lots of advice but everything seemed to contradict and no one posted a

Showing Modal window within a wizard step

2009-10-07 Thread Jeffrey Schneller
I am trying to show a modal window within a wizard step showing the same data the wizard step shows but as input text fields for editing. I have found some references to showing a wizard in a modal window and showing a wizard within a wizard but not what I am looking to do. I have the wizard

  1   2   >