AutoCompleteTextField with panels

2009-03-16 Thread Tim Squires
Hi, Does anyone know if AutoCompleteTextField can be used with Panels in the generated list instead of just the String[]? Thanks, Tim - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands,

Encoding Russian pages

2009-02-16 Thread Tim Squires
Hi, I have been sent Russian translations to my default English pages. Wicket picks up the _ru.properties bundles correctly but somewhere along the way, the encoding is not changing from UTF-8. I gather that the Russian translated pages will need an encoding of cp1251. I have tried to force

Re: Encoding Russian pages

2009-02-16 Thread Tim Squires
at 2:04 PM, Tim Squires w...@tnwdb.com wrote: Hi, I have been sent Russian translations to my default English pages. Wicket picks up the _ru.properties bundles correctly but somewhere along the way, the encoding is not changing from UTF-8. I gather that the Russian translated pages will need

Re: [OT] wicket users around the world

2008-12-12 Thread Tim Squires
Yorkshire, England In the last year, I've developed Wicket applications for people in Aurora, Ontario London, England Nashville, Tennessee Almaty, Kazakhstan and Harrogate, England Because of this damn interweb thingy I don't actually get to go to these places :(

Re: ImageButton picture.x and picture.y

2008-11-28 Thread Tim Squires
the exact name) or something you want? Image button is just a button which has a image... Tim Squires wrote: Hi, I'm trying to retrieve the x and y coords from a user click on an ImageButton. Can anyone tell me how to get these parameters in an onSubmit method? Currently I'm doing

ImageButton picture.x and picture.y

2008-11-27 Thread Tim Squires
Hi, I'm trying to retrieve the x and y coords from a user click on an ImageButton. Can anyone tell me how to get these parameters in an onSubmit method? Currently I'm doing final IModelPicture picture = new AbstractReadOnlyModelPicture() { @Override

Re: onmouseover image

2008-09-24 Thread Tim Squires
. Alastair 2008/9/19 Tim Squires [EMAIL PROTECTED] Hi All, Before I go and write my own component to change the src of an img onouseover, I just wanted to make sure that there is no standard component. I don't want to re-invent the wheel. Is there a standard component for changing the Image

onmouseover image

2008-09-19 Thread Tim Squires
Hi All, Before I go and write my own component to change the src of an img onouseover, I just wanted to make sure that there is no standard component. I don't want to re-invent the wheel. Is there a standard component for changing the Image or ImageButton image onmouseover? Thanks, Tim

Re: AjaxSubmitLink accessing model object non-existent property

2008-04-09 Thread Tim Squires
of the link -igor On Tue, Apr 8, 2008 at 12:52 PM, Tim Squires [EMAIL PROTECTED] wrote: I have read it - a few times over the last 3 years of using Wicket and even bought the book ;) It says To use a CompoundPropertyModel, simply set one as the model for a container, such as a Form

Re: AjaxSubmitLink accessing model object non-existent property

2008-04-08 Thread Tim Squires
at the problem/solution the wrong way??? Thanks again, Tim you forgot to give ajaxsubmitlink a model, so getmodelobject() will either return null or a compound model.confirm - neither of which i think you want. -igor On Mon, Apr 7, 2008 at 1:00 PM, Tim Squires [EMAIL

AjaxSubmitLink accessing model object non-existent property

2008-04-07 Thread Tim Squires
Hi, When adding an AjaxSubmitLink, the onSubmit method tries to access a property of the model object that does not exists: --- final AjaxSubmitLink confirmLink = new AjaxSubmitLink(confirm) { @Override public void onSubmit(final

AjaxLink throws WicketRuntimeException

2008-02-29 Thread Tim Squires
Hi, I have an AjaxLink that displays a ModalWindow onClick: AjaxLink executorLink = new AjaxLink(show executor) { public void onClick(AjaxRequestTarget target) { logger.debug(show the executor details window for will + will);

Re: adding context on redirect - Wicket 1.3 on Tomcat behind Apache httpd

2008-02-11 Thread Tim Squires
Hello again, I'm still really struggling to find why the extra context is being added to the path. Could anyone help? Does anyone have a Wicket 1.3.1 setup on Tomcat behind Apache2? Is there a recommended setup e.g. Jetty? Working my way through the debug for Wicket, it looks like the page

adding context on redirect - Wicket 1.3 on Tomcat behind Apache httpd

2008-02-10 Thread Tim Squires
Hi All, I have a Wicket 1.3 app running on Tomcat 6 behind an Apache httpd server. Most of the app works great but any redirects using Component#setResponsePage adds the original web context to the path e.g. www.abcd.com/app turns to www.abcd.com/abcd/app and Tomcat complains