src tag changing

2010-05-14 Thread hill180
I have searched the web and all example don't seem to match with what I need I have an application setup to have a web application with the wicket filter on app ?xml version=1.0 encoding=UTF-8? web-app version=2.4 xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=

Dynamic checkbox form

2010-05-04 Thread hill180
Just need to be pointed in the Right direction. I have a form of check boxed created by dynamic list. What is the best way to get the Boolean value if the checkbox was selected. Thanks... - To unsubscribe, e-mail:

Maven Resource Question

2010-04-17 Thread hill180
In Netbeans, in the Maven pom.xml I have the following: resource filteringfalse/filtering directorysrc/main/html/directory targetPathcom/mydomain/myproject/targetPath excludes exclude**/public//exclude /excludes /resource resource filteringfalse/filtering

Links

2010-02-24 Thread hill180
Is there an easy way to point two wicket:id link tags to the same link. I just have the link on the Nav Bar, and in the footer bar, and they do the same thing. IE: a href=# wicket:id=restartLinkCANCEL BUTTON/a a href=# wicket:id=cancelLinkCANCEL BUTTON/a Java: restartLink = new

Re: Data Provider

2009-12-09 Thread hill180
I am using DefaultDataTable, is there a component called ajaxdatatable? joe On Tue, Dec 8, 2009 at 10:45 PM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Modal window can contain only ajax components. Are you using ajaxdatatable? ** Martin 2009/12/9 hill180 hill...@gmail.com

Re: Data Provider

2009-12-09 Thread hill180
hill180 hill...@gmail.com: Hello Group, Just a questions to get a point in the right direction. I have a Modal Window that opens when a Search AjaxLink is clicked. All is Good There. The modal Window is a form which has a datatable which autoupdates on textfield. No Problems

Data Provider

2009-12-08 Thread hill180
Hello Group, Just a questions to get a point in the right direction. I have a Modal Window that opens when a Search AjaxLink is clicked. All is Good There. The modal Window is a form which has a datatable which autoupdates on textfield. No Problems there. The problem is the Navigation 1 2

Time textfield

2009-10-27 Thread hill180
I understand there is the DateTimeField, is there a textfield specifically for time only. Or a way to turn the date off in the DateTimeField. Thanks!

Properties file and validators

2009-09-02 Thread hill180
When the user does not place enough characters (19) I want to show a error message different than '1234' is not exactly 19 characters long. I have a properties file, but I don't know what the element would be called. I have tried form.card.ExactLengthValidator=19 Digits are required. But

Re: Properties file and validators

2009-09-02 Thread hill180
Added DEBUG to log4j. Thanks! that is what I was looking for. form.card.StringValidator.exact jose On Wed, Sep 2, 2009 at 5:41 PM, Igor Vaynberg igor.vaynb...@gmail.comwrote: you can turn on debug logging and wicket will spit out all keys it tries to use. -igor On Wed, Sep 2, 2009 at 5:27

Re: SSL on pages

2009-08-09 Thread hill180
I looked at that and found the sample code for this in the Javadocs, unfortunately got stuck at SecureRequestCycleProcessor In the java docs, it has this a class to instantiate, but either I am supposed to create something and extend another class, or something... either way, I can't get

Require SSL and 1.4.0

2009-08-06 Thread hill180
As a new user, I am not sure I understand, I need to setup @requireHTTPS to work and I have the following Code: What am I doing wrong? I have Wicket 1.4.0 error SecureRequestCycleProcessor cannot be resolved to a type package com.test.sslstuff2; import

Require SSL and 1.4.0

2009-08-05 Thread hill180
As a new user, I am not sure I understand, I need to setup @requireHTTPS to work and I have the following Code: What am I doing wrong? I have Wicket 1.4.0 error SecureRequestCycleProcessor cannot be resolved to a type package com.test.sslstuff2; import

Re: creating bookmarkablelink for email

2009-06-13 Thread hill180
to add a bookmarkablelink I added the following to the main application class: protected void init(){ //Set Bookmarkable Pages mountBookmarkablePage(emailconfiguration,Page2.class); ... import wicket.PageParameters; import wicket.markup.html.WebPage; import

Time Field

2009-06-08 Thread hill180
I understand there is the Datetimefield, but is there a field for just time. -jose - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Copy Form Fields

2009-06-07 Thread hill180
org.apache.wicket.markup.html.WebPage; import org.apache.wicket.markup.html.basic.Label; import org.apache.wicket.markup.html.form.Form; import org.apache.wicket.markup.html.form.TextField; import org.apache.wicket.model.Model; /** * * @author hill180 */ public final class HomePage extends WebPage { @SuppressWarnings

Re: Copy Form Fields

2009-06-03 Thread hill180
wouldn't that work? Eyal Golan egola...@gmail.com Visit: http://jvdrums.sourceforge.net/ LinkedIn: http://www.linkedin.com/in/egolan74 P Save a tree. Please don't print this e-mail unless it's really necessary On Mon, Jun 1, 2009 at 5:31 PM, hill180 hill...@gmail.com wrote: AjaxLink link

Re: Copy Form Fields

2009-06-01 Thread hill180
. Please don't print this e-mail unless it's really necessary On Mon, Jun 1, 2009 at 12:55 AM, hill180 hill...@gmail.com wrote: I have looked through the archives and there were a couple references to this question but no examples and I was hoping for some help. I have a form with Address One

Copy Form Fields

2009-05-31 Thread hill180
I have looked through the archives and there were a couple references to this question but no examples and I was hoping for some help. I have a form with Address One and Address Two, I have a link that I just want to copy the data over. I am thinking it should use Javascript, but I am new