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 gr

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 ex

[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 cre

[Wicket-user]

2006-04-10 Thread nato
Wicket adds

[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 : > setS

[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 multipl

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 Nabble.com.---

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. -

[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 step

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. --

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] 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 DropD

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                }           

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 IChoice

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 'empty-cell

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 HashMap...the first String is the ID and the second String is the value.I have this:            IModel dropDownModel = new Model()             {                protected Object load()                {         

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 setDefaultFormProcess

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:  as Igor recommended.  It worked fine, except for when the IDataProvider provided either a null or an

RE: [Wicket-user] DataTable formatting

2006-04-10 Thread Frank Silbermann
To draw lines separating every cell in my DataTable I tried:  as 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 complex CSS approach wo

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

[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

[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 element.   Can anyone describe how I can do this, please? I

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.. T

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 si

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

[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 t

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 material

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

[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 PRO

Re: [Wicket-user] Panel and model problem

2006-04-10 Thread Johan Compagner
Are the 2 panels working on the same object?Then yest the last one will get the value.Just have different objects for every panel.. How do you give an object to the panel?new MyPanel(id, myModelWithObject1) new MyPanel(id, myModelWithObject2)that should work fine.johanOn 4/10/06, Geertjan Wielenga

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

2006-04-10 Thread Johan Compagner
the problem with myeclipse is that they don't move quickly enough for me.They should be atleast have a version of myeclipse for every milestone build. Else i can't really use there software.Do they have a version for 3.2M6 ?johanOn 4/10/06, Vincent Jenks <[EMAIL PROTECTED]> wrote: Johan, I agree,

[Wicket-user] Panel and model problem

2006-04-10 Thread Geertjan Wielenga
Not sure if I can explain my problem exactly. I have a panel that uses a simple pojo as a model. I want to reuse that panel (which is why I created it in the first place). But, the result is that the pojo is overwitten each time I use the panel. More conceretly -- the panel consists of a tex

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 star

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

2006-04-10 Thread Daniel Spiewak
Merve will either deploy to Tomcat or run the webapp in a bundled Tomcat instance.  Just to give you a headstart in the flakey-ness, it all has to do with creating the Run Configuration and the webapp context dir.  :-) I would use MyEclipse if I was willing to spend the money on it.DanielOn 4/10/06

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 whic

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 all.For

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

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

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

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 ava

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 fa