ANN: wicket based demo of stitches release

2009-06-19 Thread Phillip Rhodes
Hi everyone. Just wanted to let you know that I released stitches with a cool demo and I wouldn't be done yet if it weren't for wicket. While stitches (the backend) doesn't need or use any UI component, for interfacing with the stitches repo, I wouldn't think of using anything but wicket.

Ordering a list component?

2009-05-27 Thread Phillip Rhodes
I was wondering if anyone had a component that allows you to order a list of items? Thanks, wicket is the best! - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: Ordering a list component?

2009-05-27 Thread Phillip Rhodes
@wicket.apache.org Subject: Re: Ordering a list component? Collections.sort 2009/5/27 Phillip Rhodes spamsu...@rhoderunner.com: I was wondering if anyone had a component that allows you to order a list of items? Thanks, wicket is the best

Re: DropDownChoice with ChoiceRender problem

2009-05-06 Thread Phillip Rhodes
@wicket.apache.org Subject: Re: DropDownChoice with ChoiceRender problem On Tue, May 5, 2009 at 9:37 AM, Phillip Rhodes spamsu...@rhoderunner.com wrote: I want to display Yes to the user in the dropdown.  If the user selects Yes, I want address.handicapAccess string property to be set to Y Do you still

Re: DropDownChoice with ChoiceRender problem

2009-05-05 Thread Phillip Rhodes
: Tuesday, May 5, 2009 7:05am To: users@wicket.apache.org Subject: Re: DropDownChoice with ChoiceRender problem So, you want the codes to be the values? Why not use a map-based renderer as opposed to creating a whole new class? On Mon, May 4, 2009 at 9:48 PM, Phillip Rhodes prho...@rhoderunner.com wrote

DropDownChoice with ChoiceRender problem

2009-05-04 Thread Phillip Rhodes
Hi everyone, Sorry for posting this problem but I have been stuck for far too many hours on this. Using wicket 1.4 Appreciate any help on this very very much. I have a pojo object called address that has a property of handicapAccess I am trying to bind this property to a dropdown list with 3

setEscapeModelStrings on PropertyColumn?

2009-04-24 Thread Phillip Rhodes
I have a DefaultDataTable that I am adding PropertyColumn's to. I would like to disable output escaping on the value of the PropertyColumn, but I don't see the setEscapeModelStrings on the PropertyColumn. Any hints? Thank you!

should i migrate from 1.3.to 1.4?

2009-04-22 Thread Phillip Rhodes
I am trying to use some components from wicket-stuff that I need to build from the 1.3.5 tag, and to do this, I need to build wicket from the 1.3.5. That's 2 projects that I need to build from source so I can use some components. I am considering migrating to 1.4 so I can use the distributed

Re: Which component for gmap for wicket 1.3.5?

2009-04-21 Thread Phillip Rhodes
.init(GMap2.java:99) -Original Message- From: Martin Funk mafulaf...@googlemail.com Sent: Tuesday, April 21, 2009 3:05am To: users@wicket.apache.org Subject: Re: Which component for gmap for wicket 1.3.5? number 1) it evolved out of 2) mf 2009/4/20 Phillip Rhodes spamsu

Re: Which component for gmap for wicket 1.3.5?

2009-04-21 Thread Phillip Rhodes
@wicket.apache.org Subject: Re: Which component for gmap for wicket 1.3.5? Have you pulled it from wicketstuff trunk or the 1.3.X branch? -- Jeremy Thomerson http://www.wickettraining.com On Tue, Apr 21, 2009 at 12:16 PM, Phillip Rhodes spamsu...@rhoderunner.comwrote: Is gmap2 supposed to work

Which component for gmap for wicket 1.3.5?

2009-04-20 Thread Phillip Rhodes
I see there are a couple gmap projects if I browse to the SVN repo for wicketstuff. http://wicketstuff.org/maven/repository/org/wicketstuff/ For example: 1) gmap2 (updated Mon, 20 Apr 2009) 2) wicket-contrib-gmap2 (updated on Mon, 01 Dec 2008) I am using wicket 1.3.5 Which component should I

When should you use DefaultDataTable vs. ListView ?

2009-04-14 Thread Phillip Rhodes
I am writing an application and have used both the DefaultDataTable and ListView to display paged data. Besides the feature that DefaultDataTable allows you to sort columns easily, is there any reason to choose one over the other? Thanks!

Expand/collaspe panel component?

2009-04-07 Thread Phillip Rhodes
I know that I can write one, but I was looking for a panel that can can expand/collapse if a plus/minus sign is clicked. I will appreciate it if you could point out one. Thanks. - To unsubscribe, e-mail:

Re: freelance gig

2009-03-25 Thread Phillip Rhodes
To: users@wicket.apache.org Subject: Re: freelance gig Don't do it: http://www.joelonsoftware.com/articles/fog69.html ** Martin 2009/3/25 Phillip Rhodes spamsu...@rhoderunner.com: I apologize for this posting, but being a fellow wicket enthusiast who needs some help, I wouldn't have

best way to obtain component reference?

2009-01-22 Thread Phillip Rhodes
I am trying to update the label text on a page from a inner class (onSubmit) of my page. I used the page.get(componentid) method, but it returns null. While I could just store the reference to the label as a variable in my page class, I would like to understand how to obtain a reference to it

Re: Problem using @SpringBean with Wicket 1.3.5

2009-01-19 Thread Phillip Rhodes
Kent, I am using 1.3.5 fine with springbean. some differences that I see between your/mine is that I have the protected modifier. Mine: @SpringBean(name = eventService) protected EventService eventService; another difference: Try adding a slash to the beginning of your

ModalWindow gotcha!

2009-01-18 Thread Phillip Rhodes
I have figured out why my ModalWindow was not working. Declaring the ModalWindow from a panel did not work. The ModalWindow would appear, but the ModalWindow contents (a panel) would be rendered within the parent panel after the ModalWindow was closed. If I declare the ModalWindow in a

referencing page from panel?

2009-01-16 Thread Phillip Rhodes
Hi, I have a panel that is on a page and the panel needs to be able to reference another panel on the same page. The panel is a detail form. The detail form contains a link back to the search results. I want to put the link in the detail form since this is the only time that it will appear,

example of opening ModalWindow with submit button ?

2009-01-16 Thread Phillip Rhodes
I would like to open a modelwindow, but not with a link since I do not want any form data to be lost. Does anyone have an example or pointer? I did manage to open a modalwindow using an ajaxsubmit button, but the content of my dialog gets written to my page and the dialog is empty! Thanks!

lucene document property resolve with datatable?

2009-01-15 Thread Phillip Rhodes
Hi, I am trying to display a lucene document as a row in the datatable. Here is how I am defining my column: PropertyColumn col = new PropertyColumn(new Model(Name), get('NAME'), get('NAME')); The get('NAME') is a call to the document.get(String fieldName) method on the lucene document. I

modify domain object but stay on the same page?

2009-01-15 Thread Phillip Rhodes
I have been searching, but all the examples that I come across use a standalone page for editing an object. For example, clicking this link will take the user to a PersonEdit page. add(new Link(editPerson) { public void onClick() {

wicket-datetime DateField generates 2 textfields problem

2009-01-14 Thread Phillip Rhodes
This is my first full day with wicket, so please bear with me. I am trying to use the DateField to manage a java.util.Date. My problem is that the datafield outputs an extra textfield in my form. The picker does work and does set the date value for the 2nd textarea, but there is still

Open popup on form submit?

2009-01-13 Thread Phillip Rhodes
Hi, Is it possible to do a form submit and display a popup? I want it to be on form submit so that the form data is saved since I need to reload it when the popup is closed. Just having a anchor that generates the popup causes users to lose data entry. Thanks.

Re: NoSuchMethodException / PropertyResolver

2007-09-25 Thread Phillip Rhodes
Martijn Dashorst wrote: You have to provide the types for the fields, or else Wicket won't be able to discover what type to use (apparently it resolves to boolean for the name), or provide default values with the correct type in your valuemap. i.e. either: add(new TextField(firstName,

NoSuchMethodException / PropertyResolver

2007-09-24 Thread Phillip Rhodes
Hi guys, I'm seeing a weird problem with Wicket. I *think* it's the same problem discussed here http://www.nabble.com/Tracking-down-an-elusive-error-during-migration-to-1.3-t4381647.html, but won't swear to it. Basically Wicket is logging a NoSuchMethodException when rendering my page. This is