Nabble users: don't edit your posts!

2008-03-12 Thread Martijn Dashorst
Dear nabble users, The amount of messages coming in through nabble is astounding. Unfortunately this is mostly due to the ability of you editing your messages, which causes them to be sent twice or thrice to this list. As nabble hides that fact from you (it knows which message you have edited),

Re: SSL

2008-03-12 Thread Johan Compagner
No try to debug that but i guess it is more tomcat or wat you use then wicket. On 3/12/08, Tormod Øverlier [EMAIL PROTECTED] wrote: Do you have any idea as to why I'm always redirected to the start page when I try to enter a SSL-enabled page, even though I'm following the description for SSL

Re: Accordion(wicket-stuff) and a YU DatePicket together don't work.

2008-03-12 Thread Nino Saturnino Martinez Vazquez Wael
Hi Fernando, looks like there are a clash of some sort with the javascript, so you could try to change load order of the javascript or something like that(could it be because the calendar uses a different version of yahoo lib?). Im sick currently, so cant help out. I hope to be up on my feet

Ajax form validation... i can't get it work!

2008-03-12 Thread Daniel Alonso
Sorry to disturb you again, guys, but i'm on a great problem. I have to delivered a prototype of a brand new application at my work, and we try to defense the idea of doing with wicket. The thing is that I must do a validation form like this (exactly, the same).

Re: styling thead in DataTable

2008-03-12 Thread Eyal Golan
Christain, I'm a Wicket newbie and would like some helpful tips, as you already gave one. I was looking at the DataTable's source and tried to play with the markup of my inherited table. Can you give an example / link ref / more explanation of how it's done? thanks very much On Wed, Mar 12, 2008

Re: Nabble users: don't edit your posts!

2008-03-12 Thread Sebastiaan van Erk
Considering the number of times certain questions are asked on this list that are answered 1000 times in the archive, I'm kind of afraid this isn't really going to help (unless it's posted frequently). Is it not possible for nabble to disable the edit function for specifically the wicket

Re: Nabble users: don't edit your posts!

2008-03-12 Thread Martijn Dashorst
On 3/12/08, Sebastiaan van Erk [EMAIL PROTECTED] wrote: Considering the number of times certain questions are asked on this list that are answered 1000 times in the archive, I'm kind of afraid this isn't really going to help (unless it's posted frequently). I know, but not asking is most

Re: Revisited: How to mount a form?

2008-03-12 Thread Martijn Dashorst
You can't mount a form. Only bookmarkable pages can be mounted. Martijn On 3/12/08, Jörn Zaefferer [EMAIL PROTECTED] wrote: Hi, I'm trying to mount forms in my wicket application more appropiate URLs. For example I want to replace this:

Revisited: How to mount a form?

2008-03-12 Thread Jörn Zaefferer
Hi, I'm trying to mount forms in my wicket application more appropiate URLs. For example I want to replace this: action=../?wicket:interface=:3:registerpanel:registerForm::IFormSubmitListener:: with something like this (I'm not sure yet if the version parameter is necessary, or whatever that

Re: Revisited: How to mount a form?

2008-03-12 Thread Jörn Zaefferer
That is not an acceptable answer. And from what I've seen, Wickets RequestCodingStrategy-architecture allows you to mount forms just as well - its just not exactly easy. Any others? On Wed, Mar 12, 2008 at 10:14 AM, Martijn Dashorst [EMAIL PROTECTED] wrote: You can't mount a form. Only

Re: Revisited: How to mount a form?

2008-03-12 Thread Jay Hogan
Jörn, Sorry the answer is not acceptable to you but that is the correct answer. A Form (i.e. org.apache.wicket.markup.html.form.Form or a subclass of such) cannot be rendered unless it is added to a WebPage. Sorry, that is just how Wicket works. I would suggest that you read the Getting Started

Re: Revisited: How to mount a form?

2008-03-12 Thread Jörn Zaefferer
Jay: I didn't ask for rendering a form without a page - I just want to control the url in the form's action attribute. Johan: I can mount a page, but that doesn't affect the action-attribute of the form at all. I need to make it non-trivial for an attacker to find out which web framework I'm

Re: Revisited: How to mount a form?

2008-03-12 Thread James Carman
My simple form's action looks like: action=?x=ddw0qAw21grCPRao*Ubfef2Sc3qqyFsw0T9XGN5CArkF*CTRiwidzg when I use that along with the CachingSunJceCryptFactory. On 3/12/08, James Carman [EMAIL PROTECTED] wrote: Have you looked at:

Re: Revisited: How to mount a form?

2008-03-12 Thread Johan Compagner
Forms point back to the page. So the url that is generated for the form is the page its url so you have to mount the page where the form is on And if you want a nice url you could try to use HybridUrlEncoding But why do you want nice url for forms? They are just in the markup they will not show

Re: Revisited: How to mount a form?

2008-03-12 Thread James Carman
Have you looked at: org.apache.wicket.protocol.http.request.CryptedUrlWebRequestCodingStrategy On 3/12/08, Jörn Zaefferer [EMAIL PROTECTED] wrote: Hi, I'm trying to mount forms in my wicket application more appropiate URLs. For example I want to replace this:

Re: Revisited: How to mount a form?

2008-03-12 Thread Matej Knopp
You can just make a fork of WebRequestCodingStrategy and change the constants. -Matej On Wed, Mar 12, 2008 at 10:46 AM, Jörn Zaefferer [EMAIL PROTECTED] wrote: Jay: I didn't ask for rendering a form without a page - I just want to control the url in the form's action attribute. Johan: I

Re: Strange thing in Application constructor

2008-03-12 Thread Roberto Fasciolo
I'm talking about acceptance tests executed using selenium against the real application (we don't use WicketTester at all). What kind of patch do you have? -Roberto Mr Mean wrote: Are you talking about test behavior or real life app behavior? Maurice -- View this message in context:

Re: Ajax form validation... i can't get it work!

2008-03-12 Thread Erik van Oosten
Hi Daniel, You should really read http://java.sun.com/j2se/1.5.0/docs/api/java/util/ConcurrentModificationException.html. You'll find that you have some code that iterates over a collection, and within that iteration the collection is modified. Regards, Erik. Daniel Alonso wrote:

Re: Strange thing in Application constructor

2008-03-12 Thread Maurice Marrink
Its a patch for WicketTester, so not relevant for your situation. That's why i asked first instead of blurting out noise like Johan did. :P Maurice On Wed, Mar 12, 2008 at 12:11 PM, Roberto Fasciolo [EMAIL PROTECTED] wrote: I'm talking about acceptance tests executed using selenium against

Re: Strange thing in Application constructor

2008-03-12 Thread Maurice Marrink
But in regards to your stateless page problem. Not only must the page be stateless, but also every component on the page. A form is not stateless, so you should use a StatelessForm on your login page. Also if a RestartResponseAtInterceptPage occurs (which is likely if you either use

Ajax CheckGroup problem exception: java.lang.IllegalStateException: No Page found for component

2008-03-12 Thread Eyal Golan
Hi, I made a select-all check box inside a table. I used the example from http://javathoughts.capesugarbird.com/2007/09/ajax-select-all-checkbox-for-wicket.html It works well in most cases. Here's some code: Adding the checkgroup to the panel: private void addCheckGroup() {

Re: OpenId with Wicket

2008-03-12 Thread Ryan Sonnek
Yep. Just what Igor said. I've successfully been using open id with my wicket app for quite a while. Once the RequestUtils method was added, it became really simple. On Wed, Mar 12, 2008 at 12:22 AM, Igor Vaynberg [EMAIL PROTECTED] wrote: mount a bookmarkable page. get a url for it via

Include feedback messages description on alt Image property

2008-03-12 Thread Daniel Alonso
Hi again to everybody. After looking tons of examples related to wicket 1.2 I have no idea of how i can do the next: At this moment I cant show an error icon next to an erroneus field after submitting a form. The thing is that i must include the message feedback string as part of the alt

Re: Nabble users: don't edit your posts!

2008-03-12 Thread Nick Heudecker
IMO, I'd disable the Nabble posting. If people really have questions, they'll subscribe to the list. -Nick

Re: Nabble users: don't edit your posts!

2008-03-12 Thread Sebastiaan van Erk
I posted the problem to their support forum, hopefully it will help. :-) http://www.nabble.com/Double-posts-to-mailing-lists-due-to-edits-on-nabble-to16000975.html Regards, Sebastiaan Martijn Dashorst wrote: On 3/12/08, Sebastiaan van Erk [EMAIL PROTECTED] wrote: Considering the number of

Re: Ajax CheckGroup problem exception: java.lang.IllegalStateException: No Page found for component

2008-03-12 Thread Eyal Golan
One more thing. The problem occurs also when reloading the search (original) page. ie - pressing the F5. On Wed, Mar 12, 2008 at 2:18 PM, Eyal Golan [EMAIL PROTECTED] wrote: Hi, I made a select-all check box inside a table. I used the example from

Re: Double submit problem

2008-03-12 Thread hillj2
Here's a solution that SEEMS to be working. It incorporates our solution to the double submit problem that we used on our JSP's. It didn't appear to be working for me at first, but seems to be now. (It does use the old servlet request/session objects, but this may change once all our old code

Re: Nabble users: don't edit your posts!

2008-03-12 Thread AshleyAbraham
One other reason why Nabble resends the message is if someone posts a message and if it hasn't been accepted yet, Nabble puts these notices saying your message has not been accepted so try posting your message again... for someone new to Nabble forum they think they need repost their message

Serialisation/serialization documentation?

2008-03-12 Thread Sam Hough
Dear All, I'm trying to get a better understanding off when/how/where Wicket serialises components and non-transient/non-static references they hold. To tune and sanity check our application. Playing with writeObject, readObject I can see it writing on every ajax request but only reading when I

Re: Serialisation/serialization documentation?

2008-03-12 Thread Sebastiaan van Erk
Look for page store in the archives and the IPageStore interface. To get your application to deserialize stuff, simply press the back button on a wicket page, and click on a wicket link in the resulting page. That should get your page loaded from the page store. Regards, Sebastiaan Sam

StringResourceModel labels within values

2008-03-12 Thread i ii
is there way to do something like: .properties file: some.label=Some Label some.text=Some Text some.key=This text will have ${some.label} and ${some.text}

Re: Serialisation/serialization documentation?

2008-03-12 Thread Sebastiaan van Erk
I just remember Johan gave a presentation about this at the last WUG in Amsterdam: http://www.slideshare.net/jcompagner/session-stores-page-maps-and-pages Regards, Sebastiaan Sam Hough wrote: Dear All, I'm trying to get a better understanding off when/how/where Wicket serialises components

Panel state when created from GridView

2008-03-12 Thread Ryan
I have a panel that contains a boolean property to track its state (editMode). I have a page that creates several of these panels by using a GridView, which gets the model from the datasource and passes it to the panels constructor. The panel has a Link and its onclick just toggles the editMode

Deploy Wicket 1.3 project to Websphere 6.1

2008-03-12 Thread Justine Yan
Hi, I am getting Error 404 when running the helloworld example. I read it somewhere that I should use WicketServlet instead of WicketFilter. Anyone has experiences deploy to Websphere? Any suggestion? Thank you very much! Justine

Panel not updated on modelchange

2008-03-12 Thread deletethisprofile
Hi I have a panel with an AbstractReadOnlyModel that i want to change when i select an radiobutton on another panel. The radiobuttons are in a radiogroup with a properymodel to the same object that I have in the AbstractReadOnlyModel. But when I select the radiobuttons the modelobject is changed

Re: Panel not updated on modelchange

2008-03-12 Thread Eelco Hillenius
Ajax or non-ajax? Eelco On Wed, Mar 12, 2008 at 9:40 AM, deletethisprofile [EMAIL PROTECTED] wrote: Hi I have a panel with an AbstractReadOnlyModel that i want to change when i select an radiobutton on another panel. The radiobuttons are in a radiogroup with a properymodel to the same

Is it possible to escape HTML in a feedback message?

2008-03-12 Thread mraible
I have the following in a page: If the feedback message contains XML, it doesn't get escaped. Is there any way to turn on HTML escaping? Thanks, Matt -- View this message in context: http://www.nabble.com/Is-it-possible-to-escape-HTML-in-a-feedback-message--tp16008403p16008403.html Sent

Re: Include feedback messages description on alt Image property

2008-03-12 Thread Igor Vaynberg
just write your own feedbackpanel that works the way you want. look at the source of the original one. -igor On Wed, Mar 12, 2008 at 5:25 AM, Daniel Alonso [EMAIL PROTECTED] wrote: Hi again to everybody. After looking tons of examples related to wicket 1.2 I have no idea of how i can do

Re: Serialisation/serialization documentation?

2008-03-12 Thread Sam Hough
Thanks Sebastiaan, How does serialisation kick in when using Ajax? ie Same page all the time Sebastiaan van Erk wrote: Look for page store in the archives and the IPageStore interface. To get your application to deserialize stuff, simply press the back button on a wicket page, and

Re: Serialisation/serialization documentation?

2008-03-12 Thread Eelco Hillenius
On Wed, Mar 12, 2008 at 9:44 AM, Sam Hough [EMAIL PROTECTED] wrote: Thanks Sebastiaan, How does serialisation kick in when using Ajax? ie Same page all the time Same page but different versions. Each page version is separately serialized. Eelco

Re: StringResourceModel labels within values

2008-03-12 Thread Igor Vaynberg
you can roll your own model... -igor On Wed, Mar 12, 2008 at 8:20 AM, i ii [EMAIL PROTECTED] wrote: is there way to do something like: .properties file: some.label=Some Label some.text=Some Text some.key=This text will have ${some.label} and ${some.text}

Re: Panel state when created from GridView

2008-03-12 Thread Igor Vaynberg
see setitemreusestrategy() on the gridpanel -igor On Wed, Mar 12, 2008 at 9:06 AM, Ryan [EMAIL PROTECTED] wrote: I have a panel that contains a boolean property to track its state (editMode). I have a page that creates several of these panels by using a GridView, which gets the model from

Re: Accordion(wicket-stuff) and a YU DatePicket together don't work.

2008-03-12 Thread Fernando Wermus
Ok. How can I change the order of javascript files loading in Wicket? On 3/12/08, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Hi Fernando, looks like there are a clash of some sort with the javascript, so you could try to change load order of the javascript or something

Re: Panel not updated on modelchange

2008-03-12 Thread deletethisprofile
Non-ajax. Ole-Harald Eelco Hillenius wrote: Ajax or non-ajax? Eelco On Wed, Mar 12, 2008 at 9:40 AM, deletethisprofile [EMAIL PROTECTED] wrote: Hi I have a panel with an AbstractReadOnlyModel that i want to change when i select an radiobutton on another panel. The

Re: Is it possible to escape HTML in a feedback message?

2008-03-12 Thread Igor Vaynberg
what ever was after I have the following in a page: got stripped -igor On Wed, Mar 12, 2008 at 9:56 AM, mraible [EMAIL PROTECTED] wrote: I have the following in a page: If the feedback message contains XML, it doesn't get escaped. Is there any way to turn on HTML escaping?

Re: Is it possible to escape HTML in a feedback message?

2008-03-12 Thread mraible
lt;span wicket:id=feedback class=message/spangt; igor.vaynberg wrote: what ever was after I have the following in a page: got stripped -igor On Wed, Mar 12, 2008 at 9:56 AM, mraible [EMAIL PROTECTED] wrote: I have the following in a page: If the feedback message contains

Issues in Wicket Filter

2008-03-12 Thread Andrew Berman
So, I'm having a problem with Wicket in that it is ignoring query string parameters. There are two problems. Here is the use case for problem 1: 1. Go to http://foo.com/yourapp?id=2 2. In your application class override newRequestCycle and newSession and put breakpoints in there 3. In either

Direct only *.html to Wicket Filter

2008-03-12 Thread Sri Sankaran
I would like to include a couple of utility JSP s along with my otherwise Wicket-ized application. However, I don't know how to instruct the Wicket Filter to only handle HTML pages? I want the container (WebLogic) to handle the JSPs. My first attempt was: lt;filter-mapping

help with Signin2 example

2008-03-12 Thread Andrew Broderick
Hi, I am new to Wicket, and trying to get the Signin2 (user authorization) example working. I am using Wicket 1.3 and JBoss 4.5. The problem is that after I sign in, it doesn't redirect to the home page. It tries to redirect to http://localhost:8080/index.jsp (which is presumably just a

span wicket:id=mainNavigation/

2008-03-12 Thread Andrew Broderick
Hi, The Signin2 example uses span wicket:id=mainNavigation/ in the page. This doesn't correspond to any components added by the page's Java class, and throws an error: WicketMessage: Unable to find component with id 'mainNavigation' in [Page class = com.company.page.auth.SignIn, id = 0,

Re: Direct only *.html to Wicket Filter

2008-03-12 Thread Igor Vaynberg
it should be just fine to funnel your jsps into wicket. wicketfilter checks if the request is for wicket or not and if not lets the servlet container handle it...thats why its now a filter and not a servlet... -igor On Wed, Mar 12, 2008 at 11:10 AM, Sri Sankaran [EMAIL PROTECTED] wrote: I

Re: span wicket:id=mainNavigation/

2008-03-12 Thread Igor Vaynberg
i believe mainnavigation comes from WicketExamplePage which signin2 page extends... -igor On Wed, Mar 12, 2008 at 11:38 AM, Andrew Broderick [EMAIL PROTECTED] wrote: Hi, The Signin2 example uses span wicket:id=mainNavigation/ in the page. This doesn't correspond to any components added by

RE: span wicket:id=mainNavigation/

2008-03-12 Thread Andrew Broderick
Yes, of course. So it does. That solves that problem. But, WicketExamplePage just seems to add a standard header that outputs the page name. So, omitting this should not cause the redirect from the signin page to the home page to fail, should it? (See my earlier message about problems with the

Re: Direct only *.html to Wicket Filter

2008-03-12 Thread Sri Sankaran
Alright! That works. Thank you very much. Sri igor.vaynberg wrote: it should be just fine to funnel your jsps into wicket. wicketfilter checks if the request is for wicket or not and if not lets the servlet container handle it...thats why its now a filter and not a servlet... -igor

Re: Issues in Wicket Filter

2008-03-12 Thread Andrew Berman
I was able to fix my issue by making sure that the home page was not mounted to any coding strategy. However, the / issue is still there, but I think I can get around it with Apache. Still this should be in the migration guide, because both problems broke functionality that worked in 1.2 On

Re: Issues in Wicket Filter

2008-03-12 Thread Igor Vaynberg
migration guide is a wiki page... -igor On Wed, Mar 12, 2008 at 12:36 PM, Andrew Berman [EMAIL PROTECTED] wrote: I was able to fix my issue by making sure that the home page was not mounted to any coding strategy. However, the / issue is still there, but I think I can get around it with

Re: Issues in Wicket Filter

2008-03-12 Thread Andrew Berman
BTW - The slash problem is Line 255 of WicketFilter. It just completely disregards the query string... final String redirectUrl = servletRequest.getRequestURI() + /; https://issues.apache.org/jira/browse/WICKET-1416 On Wed, Mar 12, 2008 at 12:36 PM, Andrew Berman [EMAIL PROTECTED] wrote: I

include files under HTTPS

2008-03-12 Thread givp
I've run into a strange issue where the page that have include file break when viewed under https. My include files are .html files and work beautifuly normally. But I just viewed the site in https mode and all the sections of the site that have includes now show this: This object may be found

Re: StringResourceModel labels within values

2008-03-12 Thread Johan Compagner
I think if you just give SRM a model that again gets the values from the localizer then it should work fine. On 3/12/08, i ii [EMAIL PROTECTED] wrote: is there way to do something like: .properties file: some.label=Some Label some.text=Some Text some.key=This text will have ${some.label}

Re: StringResourceModel labels within values

2008-03-12 Thread Igor Vaynberg
but will that work recusively? :) -igor On Wed, Mar 12, 2008 at 1:44 PM, Johan Compagner [EMAIL PROTECTED] wrote: I think if you just give SRM a model that again gets the values from the localizer then it should work fine. On 3/12/08, i ii [EMAIL PROTECTED] wrote: is there way to

form component parameter missing in request

2008-03-12 Thread Scott Swank
I have a form with 15 form components. Only 14 parameters for these components are being sent over from the form when it is submitted. Are there any known issues with 1.2.6 that might result in this? Potentially relevant details include: 1 -- The form is in a ModalWindow 2 -- The component is a

Re: Is it possible to escape HTML in a feedback message?

2008-03-12 Thread mraible
Yes it does - thanks! FeedbackPanel feedback = (FeedbackPanel) backPage.get(feedback); feedback.setVisible(true); feedback.setEscapeModelStrings(true); Is there anyway to make escapeModelStrings on by default? Thanks, Matt igor.vaynberg wrote: does

DateTime.setLabel() issue and a related (but general) setLabel() question

2008-03-12 Thread Phil Grimm
Hey Guys, I'm building my first Wicket app and, so far, am really loving Wicket! I've built my first form and am stumped on a issue with the DateTime component. I call setLabel() on all the fields in my form and all the labels I provide appear in the validation error messages except one, the

Re: Is it possible to escape HTML in a feedback message?

2008-03-12 Thread Scott Swank
Subclass it. On Wed, Mar 12, 2008 at 2:24 PM, mraible [EMAIL PROTECTED] wrote: Yes it does - thanks! FeedbackPanel feedback = (FeedbackPanel) backPage.get(feedback); feedback.setVisible(true); feedback.setEscapeModelStrings(true); Is there anyway to make escapeModelStrings on by

Re: DateTime.setLabel() issue and a related (but general) setLabel() question

2008-03-12 Thread Gerolf Seitz
you can override newDateTextField(..) and call .setLabel() directly on the DateTextField in there. Gerolf On Wed, Mar 12, 2008 at 10:26 PM, Phil Grimm [EMAIL PROTECTED] wrote: Hey Guys, I'm building my first Wicket app and, so far, am really loving Wicket! I've built my first form and am

Re: DateTime.setLabel() issue and a related (but general) setLabel() question

2008-03-12 Thread Igor Vaynberg
shouldnt DateField forward its label to the internal field? -igor On Wed, Mar 12, 2008 at 2:32 PM, Gerolf Seitz [EMAIL PROTECTED] wrote: you can override newDateTextField(..) and call .setLabel() directly on the DateTextField in there. Gerolf On Wed, Mar 12, 2008 at 10:26 PM, Phil

wicket and sun portal, jsr186 and 286 portlet

2008-03-12 Thread Frode Bjerkenes
Hi, I'm looking into using wicket as for deveping portlets in sun portal server, with jsr168/jsr286. I see that the portal needs to have Apache Portals Bridges interface according to http://cwiki.apache.org/WICKET/portal-howto.html, but I cannot find any informat about that. Do anyone have any

Re: wicket and sun portal, jsr186 and 286 portlet

2008-03-12 Thread Igor Vaynberg
i believe with jsr268 you do not need the bridge... -igor On Wed, Mar 12, 2008 at 2:43 PM, Frode Bjerkenes [EMAIL PROTECTED] wrote: Hi, I'm looking into using wicket as for deveping portlets in sun portal server, with jsr168/jsr286. I see that the portal needs to have Apache Portals

Re: Multipart-form with nested ajaxform throws exception in 1.3.1

2008-03-12 Thread albert.brand
Michael Sparer wrote: I have a multipart-enabled form, inside this form there is a nested form with ajaxsubmitbehavior. to submit the nested form I'm using an AjaxButton (as the normal button doesn't submit the form via ajax - contrary to its behaviour if not used as nested form) all

Hide Wicket AJAX Debug window

2008-03-12 Thread hjuturu
Hi All i have a label on my webpage on which i do a in line edit using AjaxEditableLabel. I have included wicket-event.js and wicket-ajax.js javascripts in my page. When i start editing the label the wicket ajax debug window appears on the lower right corner. how can i hide that window. Thanks

Re: Hide Wicket AJAX Debug window

2008-03-12 Thread Gerolf Seitz
this window only shows up when you start your wicket application in development mode. it won't show up in production mode. Gerolf On Wed, Mar 12, 2008 at 11:14 PM, hjuturu [EMAIL PROTECTED] wrote: Hi All i have a label on my webpage on which i do a in line edit using AjaxEditableLabel. I

Re: Hide Wicket AJAX Debug window

2008-03-12 Thread Ryan Gravener
You can also do: getDebugSettings().setAjaxDebugModeEnabled(false); in your Application.init() method. On Wed, Mar 12, 2008 at 6:21 PM, Gerolf Seitz [EMAIL PROTECTED] wrote: this window only shows up when you start your wicket application in development mode. it won't show up in production

Customising Radio Buttons with JS and CSS

2008-03-12 Thread Ballist1c
Hey guys, I got a funky idea for the UI. I have a form that consists of set static radio choices and I am looking to add a bit of zing with it. Rather than having the radio button with text, i want to jazz it up with having a 100x100px tile with an image on it representing each of the radio

London Wicket Training at Easter ... still 4 places left

2008-03-12 Thread jweekend
Al and I are preparing for the London Wicket course coming up next week. This http://jweekend.com/dev/JW035/ 2 day intensive Wicket course has evolved very nicely since we delivered the very first one (to a single student!, from Belgium) in 2007. Students on all our Wicket courses since then

Re: Panel state when created from GridView

2008-03-12 Thread Ryan
On Wed, Mar 12, 2008 at 10:03:28AM -0700, Igor Vaynberg exclaimed: see setitemreusestrategy() on the gridpanel -igor On Wed, Mar 12, 2008 at 9:06 AM, Ryan [EMAIL PROTECTED] wrote: I have a panel that contains a boolean property to track its state (editMode). I have a page that creates

Re: Panel state when created from GridView

2008-03-12 Thread Igor Vaynberg
that is already fixed in the upcoming 1.3.2 -igor On Wed, Mar 12, 2008 at 5:08 PM, Ryan [EMAIL PROTECTED] wrote: On Wed, Mar 12, 2008 at 10:03:28AM -0700, Igor Vaynberg exclaimed: see setitemreusestrategy() on the gridpanel -igor On Wed, Mar 12, 2008 at 9:06 AM, Ryan [EMAIL

Re: DateTime.setLabel() issue and a related (but general) setLabel() question

2008-03-12 Thread phil59
Igor, That's what I was thinking to suggest too, but I think that solution breaks down when the component has more than one internal field like DateTimeField does. Gerolf, Thanks for the tip. I think that should work for the dateField. Any ideas on what would one do to set the label on the

Re: Intention of PropertyModel in 1.3

2008-03-12 Thread David Leangen
This used to work in 1.2.6, but now 1.3.1 complains that there is no setter for this class. hmm, this should still work. mind filing a jira bug with a quickstart? You're right, it does still work. The thing is that during the algorithm when the properties of the bean are