Re: [Wicket-user] update from beta2 to beta3 broke wicket:head in context of wicket:extend

2006-04-10 Thread Ari Suutari
We had to go back to beta2 because of this. It just hits us in too many places :-( Ari S. - Original Message - From: Ari Suutari [EMAIL PROTECTED] To: wicket-user@lists.sourceforge.net Sent: Wednesday, April 05, 2006 12:55 PM Subject: Re: [Wicket-user] update from beta2 to beta3

Re: [Wicket-user] update from beta2 to beta3 broke wicket:head in context of wicket:extend

2006-04-10 Thread Martijn Dashorst
beta 4 or rc1 will solve this.You can check out the new improved stuff already from svn trunk if you wish.Building a wicket distribution is a matter of mvn package :-)Martijn On 4/10/06, Ari Suutari [EMAIL PROTECTED] wrote: We had to go back to beta2 because of this. It just hits us in too many

Re: [Wicket-user] Check disabled

2006-04-10 Thread Igor Vaynberg
do you see disable=disable in the html that is generated for disabled checkboxes?-IgorOn 4/9/06, R.A [EMAIL PROTECTED] wrote:Hi.I create a CheckGroup dynamically using GridView. In the GridView, Checks are populated.I would like to enabled or disabled the Checks by conditions as follows.Check

Re: [Wicket-user] Check disabled

2006-04-10 Thread R.A
Hi Igor. No, I can not see disable=disable in the html. I wrote System.out.println in the poplulateItem method. Check check = new Check(check, item.getModel()); item.add(activ); if (...) { check.setEnabled(false); } System.out.println(check.isEnabled()); Some check.isEnabled() is

Re: [Wicket-user] update from beta2 to beta3 broke wicket:head in context of wicket:extend

2006-04-10 Thread Ari Suutari
Hi, beta 4 or rc1 will solve this. Great ! You can check out the new improved stuff already from svn trunk if you wish. Building a wicket distribution is a matter of mvn package :-) Yes, I know and I used to build our wicket jars locally, but when beta versions started being

Re: [Wicket-user] update from beta2 to beta3 broke wicket:head in context of wicket:extend

2006-04-10 Thread Martijn Dashorst
True,It is in the plans to release the next version tomorrow evening. This way you can see if it is worth doing it yourself or wait for our build.MartijnOn 4/10/06, Ari Suutari [EMAIL PROTECTED] wrote: Hi,beta 4 or rc1 will solve this.Great !You can check out the new improved stuff already from

Re: [Wicket-user] View from 30,000 feet of Wicket infrastructure

2006-04-10 Thread Johan Compagner
I also don't use WebTools (if i use it is is purely for the xml/html editors if i install it)I still think webtools is much to bloated. They should contribute there editors to the core of eclipse so that eclipse has nice editors for the basic types. Then i don't have to install webtools at

Re: [Wicket-user] View from 30,000 feet of Wicket infrastructure

2006-04-10 Thread Gwyn Evans
On 10/04/06, Dave Johnson [EMAIL PROTECTED] wrote: What are some good references that clearly explain the various levels of software I encounter, such as Linux, Tomcat, Jetty, Hibernate, PHP, MySQL and all the rest, and whether they're on the local machine or the remote server? And which are

Re: [Wicket-user] View from 30,000 feet of Wicket infrastructure

2006-04-10 Thread Vincent Jenks
Johan, I agree, the basic types that webtools provides editability for should be built into eclipse...like html, xml, _javascript_, css, etc. However, for a beginner, installing eclipse + webtools gives you everything you need to build a basic Java EE-based web app. It was my experience, when

[Wicket-user] Any Wicket presentation material ?

2006-04-10 Thread Ingram Chen
Hi, all Our team decides to start to adopt Wicket next month. And I am reponsible for introducing and training. Are there any exist materials or slices for reference ? There is a pdf in JavaPolis but unfortunately it is broken... I highly appreciate any help, thanks.-- Ingram ChenJava [EMAIL

Re: [Wicket-user] View from 30,000 feet of Wicket infrastructure

2006-04-10 Thread Vincent Jenks
See, I look at it the other way around...they release a very stable, feature-rich plugin for the current release and support it well w/ regular upgrades, fixes, etc. I'm sure 5.0 will support Eclipse 3.2 but I'm not entirely sure. I'd rather not be upgrading Eclipse at every milestone and work in

Re: [Wicket-user] Any Wicket presentation material ?

2006-04-10 Thread Nick Heudecker
I'm working on materials for a training course, but I don't think they'll be done in time for your needs.On 4/10/06, Ingram Chen [EMAIL PROTECTED] wrote:Hi, all Our team decides to start to adopt Wicket next month. And I am reponsible for introducing and training. Are there any exist materials

[Wicket-user] using superclass converter for subclass instances

2006-04-10 Thread Jaime De La Jara
Hi, In a previous post I mentioned the problems I had converting simultaneously Date and Float from/to String, the explanation was on other side, since what I thought was a Date instance was a subclass returned by the JDO implementation I use. So, I thought, would not be useful (wise?) to use

Re: [Wicket-user] Check disabled

2006-04-10 Thread Igor Vaynberg
ah, yes. it just hit me. Radio and Check components are not decendants of FormComponent so they lack that behavior. I will add it sometime later today hopefully.-IgorOn 4/10/06, R.A [EMAIL PROTECTED] wrote: Hi Igor.No, I can not see disable=disable in the html.I wrote System.out.println in the

Re: [Wicket-user] using superclass converter for subclass instances

2006-04-10 Thread Johan Compagner
please add a RFE for this so that we don't forget it when refactoring the converter in 1.3/2.0johanOn 4/10/06, Jaime De La Jara [EMAIL PROTECTED] wrote:Hi, In a previous post I mentioned the problems I had converting simultaneously Date and Float from/to String, the explanation was on other

Re: [Wicket-user] View from 30,000 feet of Wicket infrastructure

2006-04-10 Thread Johan Compagner
i also can't say it why i use for example 3.2M6 UNTIL i help a coworker and i sit behind his eclipse version (still 3.1)Then suddenly it is all clear why i use the latest versions. Shorcuts that i used to for specific features don't work because that feature isn't there specific views not there..

[Wicket-user] DefaultDataTable question

2006-04-10 Thread Mark Southern
I am using DefaultDataTable. The rows in the table get class=even and class=odd tags but I would like to constrain these to a particular class of table body. Thus I need to inject a class=dataview or some such into the tbody element. Can anyone describe how I can do this, please? I

[Wicket-user] a problem with continueToOriginalDestination

2006-04-10 Thread karthik Guru
Page1 has a Form that has a Button with setDefaultFormProcessing(false) Button.onSubmit(new Page2() ) But since Page2 is marked secure and the user is not logged in, the auth strategy takes me to SignonPage. After i sign in , on SignOnPage.onSubmit( ) i do continueToOriginalDestination( ), But

Re: [Wicket-user] DefaultDataTable question

2006-04-10 Thread Igor Vaynberg
one way to do this is to attach class attr to the table instead, and then have a css style tat is dependent on the table style :table.test { blah; }table.test tbody.other { tbody style }-Igor On 4/10/06, Mark Southern [EMAIL PROTECTED] wrote: I am using DefaultDataTable. The rows in

RE: [Wicket-user] DataTable formatting

2006-04-10 Thread Frank Silbermann
To draw lines separating every cell in my DataTable I tried: table border=1 wicket:id=datatableas Igor recommended. It worked fine, except for when the IDataProvider provided either a null or an empty string for a particular cell. Then the line separators were missing. Do you think the more

Re: [Wicket-user] DataTable formatting

2006-04-10 Thread Nick Heudecker
Have you tried the CSS attribute 'empty-cells: show;' ?On 4/10/06, Frank Silbermann [EMAIL PROTECTED] wrote: To draw lines separating every cell in my DataTable I tried: table border="1" wicket:id="datatable" as Igor recommended. It worked fine, except for when the IDataProvider

Re: [Wicket-user] a problem with continueToOriginalDestination

2006-04-10 Thread Johan Compagner
hmm this won't work yesBecause continueToOriginal just remebers the url and not the post data.Can you add a bug/rfe for this? Maybe we can fix this by remembering all input values.johan On 4/10/06, karthik Guru [EMAIL PROTECTED] wrote: Page1 has a Form that has a Button with

Re: [Wicket-user] bind Map to DropDownChoice

2006-04-10 Thread Vincent Jenks
Is there an example of this somewhere? I'm struggling to get this working where I have a HashMapString, String...the first String is the ID and the second String is the value.I have this: IModel dropDownModel = new Model() {protected Object load(){ return

RE: [Wicket-user] DataTable formatting

2006-04-10 Thread Frank Silbermann
Thank you! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nick Heudecker Sent: Monday, April 10, 2006 4:12 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] DataTable formatting Have you tried the CSS attribute

Re: [Wicket-user] bind Map to DropDownChoice

2006-04-10 Thread Johan Compagner
give the choice renderen the complete hashmapAnd give the dropdown a model with the keys of that hashmap as a list.so if StringValues.getUSAStates(); are th ids in the hashmap then that should go ok. but youre choicerender is wrong: add(new DropDownChoice(billingState, dropDownModel, new

Re: [Wicket-user] bind Map to DropDownChoice

2006-04-10 Thread Vincent Jenks
I'm sorry, I don't think I quite understand.I have dropDownModel which looks like this: IModel dropDownModel = new Model() {protected Object load(){ return StringValues.getUSAStates(); //via proxy} };StringValues.getUSAStates() looks something like this: public static

Re: [Wicket-user] bind Map to DropDownChoice

2006-04-10 Thread Johan Compagner
ok then youre dropdown is wrong. IModel dropDownModel = new Model() {public Object getObject(final Component component){ return new ArrayList(StringValues.getUSAStates().keySet()); //via proxy} }; add(new DropDownChoice(billingState, dropDownModel, new IChoiceRenderer() {

Re: [Wicket-user] View from 30,000 feet of Wicket infrastructure

2006-04-10 Thread Dave Johnson
Thanks to all who replied to this thread. I'll investigate your helpful ideas. Dave --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast

Re: [Wicket-user] Enterprise application using Wicket

2006-04-10 Thread dave723
Many thanks for all replies. This will help me get the decision makesr to give Wicket a try. Dave -- View this message in context: http://www.nabble.com/Enterprise-application-using-Wicket-t1420394.html#a3852549 Sent from the Wicket - User forum at Nabble.com.

[Wicket-user] WicketTester and checkAccess redirections

2006-04-10 Thread Gustavo Hexsel
Hi, I'm using Wicket 1.1.1 and trying to get my first WicketTester to work with the current app. I can't seem to get the redirectToInterceptPage(Page) method to actually redirect to the page. It works fine from Tomcat and Jetty, but the WicketTester seems to ignore the call (though I

Re: [Wicket-user] Check disabled

2006-04-10 Thread R.A
Hi Igor. I see, and I'm looking forward to your handling. Thank you for your reply. Regars, R.A -- View this message in context: http://www.nabble.com/Check-disabled-t1423057.html#a3852996 Sent from the Wicket - User forum at Nabble.com.

Re: [Wicket-user] Check disabled

2006-04-10 Thread Igor Vaynberg
give it a go.-IgorOn 4/10/06, R.A [EMAIL PROTECTED] wrote: Hi Igor.I see, and I'm looking forward to your handling.Thank you for your reply.Regars,R.A--View this message in context: http://www.nabble.com/Check-disabled-t1423057.html#a3852996Sent from the Wicket - User forum at

[Wicket-user] how to select Time( without date) using DatePicker? and multiple DatePickers error!

2006-04-10 Thread lu dongping
Dear all, I find a method : setShowsTime() of DatePickerSettings, that I can now select Time using DatePicker. But there is not a method : setShowsTimeOnly() to hide date . Now I can select java.sql.Date, java.sql.Timestamp, but not java.sql.Time. How can I do that? btw: adding

[Wicket-user] Re: how to select Time( without date) using DatePicker? and multiple DatePickers error!

2006-04-10 Thread lu dongping
it's ok in 1.2 beta3. perhaps a new TimePicker should be added, or DatePicker be enhanced. On 4/11/06, lu dongping [EMAIL PROTECTED] wrote: Dear all, I find a method : setShowsTime() of DatePickerSettings, that I can now select Time using DatePicker. But there is not a method :

[Wicket-user] script element is not a valid html 4 or xhtml

2006-04-10 Thread nato
Wicket adds script element which is not a valid html 4 or xhtml because it does not specify the type attribute. I think it's a bug.

[Wicket-user] zero session state/stateless pages

2006-04-10 Thread Michael Day
Hi, We have been discussing this quite a bit on IRC, but I want to bring it to the list for more exposure. As far as I understand, wicket currently has a concept of stateless pages, which are pages that are not stored in the session. Unfortunately, there is no way to avoid session

Re: [Wicket-user] zero session state/stateless pages

2006-04-10 Thread cowwoc
Just to clarify... 1) It makes no sense to expect Googlebot to retain a session (contains PageMap, etc) for stateless pages because multiple bots hit the website at the same time in a non-linear order. If we try to force some sort of linear state on Google it might end up with Page is

Re: [Wicket-user] Check disabled

2006-04-10 Thread R.A
Hi Igor. I checked it. Thanks a lot!! Regars, R.A -- View this message in context: http://www.nabble.com/Check-disabled-t1423057.html#a3855145 Sent from the Wicket - User forum at Nabble.com. --- This SF.Net email is sponsored by xPML, a