Re: Absolute static file references

2009-10-25 Thread Luther Baker
Thanks Igor. We're not having performance issues. I'm just mapping what we traditionally do to Wicket. I did come across CSSPackageResource.getHeaderContribution("style/default/main.css")); which seems to do exactly what I was looking for. Back to your point, I guess I understood that Wicke

Re: Proposal: Fake implementation of AjaxRequestTarget instead of null

2009-10-25 Thread Sven Meier
Hi, thinking more about this 'issue' I realized that in these simple cases one can just use a simple helper method: onclick(target) { AjaxHelper.addComponent(componentToReRenderOnAjaxRequest); } It was already discussed how components could automagically be added for re-rendering on each Aj

Re: Proposal: Fake implementation of AjaxRequestTarget instead of null

2009-10-25 Thread Vladimir K
Consistent UI is very important for the user, isn't it? It has nothing in common with my "liking". My proposal is about how to make the Wicket user life simpler. Not only by omitting coding null-checks. It is about bugs related to forgotten null-checks. And it is about consistent API. I strive t

Re: Proposal: Fake implementation of AjaxRequestTarget instead of null

2009-10-25 Thread Vladimir K
I use similar approach and wondering. ... how to make sure that one year later another developer will realize that there is a helper for her convinience? svenmeier wrote: > > Hi, > > thinking more about this 'issue' I realized that in these simple cases > one can just use a simple helper meth

wizard step window size / width

2009-10-25 Thread Sam Zilverberg
Hello, I've recently created a wizard , but the wizard steps are too small for the content I want to put in them. How can I change a wizardstep width? or the whole wizard width? I noticed I can override the addDefaultCssStyle method of Wizard, but am not sure how to use this method too make the w

Isssues in Modal Window display in IE8

2009-10-25 Thread sakthi vel
Hello, The modal window is not working in IE8. But it is working fine in IE7 and Firefox. Can anyone tell how to make modal window work in IE8.

Multiple check box in a row in the ListView

2009-10-25 Thread sakthi vel
Hello, I have a ListView and in that each row have one label and three check boxes. If select the first the check box, the second and third check boxes should be selected. If I unselect the second or third check box, first check box should be unselected if it is already selected. This should happ

WhiteSpaces in PasswordTextField

2009-10-25 Thread sakthi vel
Hello, When I enter some blank spaces before or after the original password in the password text field, i am receiving only the characters and the not the blank spaces which are actually entered before or after the password. It seems that the blank spaces before or after the original password gets

Re: WhiteSpaces in PasswordTextField

2009-10-25 Thread Leo Erlandsson
protected boolean shouldTrimInput() Determines whether or not this component should trim its input prior to processing it. The default value is true Returns: True if the input should be trimmed. seems like a good candidate. -- View this message in context: http://www.nabble.com/

Re: Multiple check box in a row in the ListView

2009-10-25 Thread Martin Makundi
Hi! Firstly, I would consider the 1st checkbox just a dymmy helper implemented using CheckGroupSelector. I would not really care if it reflects the two other checkboxes or not, that's an overkill. And if still necessary, I would simply do it with javascript. Anywyays. there is an example of wicket

Re: Absolute static file references

2009-10-25 Thread Jonathan Locke
it's pure common sense. "don't prematurely optimize" is just a version of "don't fix what ain't broke". luther.baker wrote: > > Thanks Igor. > > We're not having performance issues. I'm just mapping what we > traditionally > do to Wicket. I did come across > > CSSPackageResource.getHead

RE: Wicket Wizard Functionality (Extensions)

2009-10-25 Thread Corbin, James
Hi Sven, What exactly am I supposed to implement in the AjaxFormSubmittingBehavior.onSubmit(...)? I've tried everything I can think of and the popup still dismisses(closes) when I press the "Next" button after completing step 1. J -Original Message- From: Sven Meier [mailto:s...@meiers.

[OT] (LONDON) maidenhead meetup

2009-10-25 Thread nino martinez wael
Hi guys I'll be in maidenhead the next couple of days( until Wednesday), so I'll probably have time for a small meetup or something informal? If anybody interested. regards Nino

Re: Proposal: Fake implementation of AjaxRequestTarget instead of null

2009-10-25 Thread Igor Vaynberg
it may very well be, but it is not a framework's job to dictate business requirements. -igor On Sun, Oct 25, 2009 at 2:01 AM, Vladimir K wrote: > > Consistent UI is very important for the user, isn't it? It has nothing in > common with my "liking". > > My proposal is about how to make the Wicket

Re: Isssues in Modal Window display in IE8

2009-10-25 Thread Per Newgro
The only thing we had here was that transparency of background page was ignored. Page was displayed in black. But that seemed to be a specific issue on some maschines. So generally we have no problems here with ie8 and modal window. Can you be more precise on your issue? Cheers Per -

Re: Wicket Wizard Functionality (Extensions)

2009-10-25 Thread Sven Meier
Hi Corbin, sorry, but I have to look that part up tomorrow. Sven Corbin, James wrote: Hi Sven, What exactly am I supposed to implement in the AjaxFormSubmittingBehavior.onSubmit(...)? I've tried everything I can think of and the popup still dismisses(closes) when I press the "Next" button a

Advice Needed: odd BookmarkablePage problem

2009-10-25 Thread John Armstrong
Background: We have a wicket based site (http://www.pnc.net/) that is a single page and does all of its work via Ajax. Use Case: We are distributing Adobe PDF based forms to customers for signup. Customers will fill out the form, click submit and acrobat will post the form to our website. The Pro

Need help with error with in my list code

2009-10-25 Thread Lester Chua
Hi, I'm very new to wicket and need some help with what I thought is very straight forward code. Wicket Version 1.4.3 Code: -- Html - Grouping: Additional Remarks: -- Java -- Form dataForm = new Form("dataForm") { @Override protecte

Re: Need help with error with in my list code

2009-10-25 Thread Lester Chua
Update: I found out what the was. I was running Jetty via JavaRebel agent. Somehow JavaRebel could not load in the changes in the Java code properly and that was what caused the code error. There was nothing wrong with the code. Thanks. On Mon, Oct 26, 2009 at 10:43 AM, Lester Chua wrote: > H

Re: Need help with error with in my list code

2009-10-25 Thread Haulyn R. Jason
I do not think JavaReble is a good tool for Wicket. Try Glassfish with hot deploy with netbeans, works very well with Wicket. On Mon, Oct 26, 2009 at 10:50 AM, Lester Chua wrote: > Update: > > I found out what the was. > I was running Jetty via JavaRebel agent. > Somehow JavaRebel could not load

Working on a Plugin Framework (Joint)

2009-10-25 Thread Ben Tilford
*A little info: *The framework is using the Netbeans Lookup api to discover "joint" implementations which are exported services using the standard META-INF/services/xyz.Abc in addition there are annotations used to configure how/where the plugin will be used. Example would be a wicket page, You can

Re: Need help with error with in my list code

2009-10-25 Thread Lester Chua
Thanks for the reference, I'll take a look at it. On Mon, Oct 26, 2009 at 10:57 AM, Haulyn R. Jason wrote: > I do not think JavaReble is a good tool for Wicket. Try Glassfish with > hot deploy with netbeans, works very well with Wicket. > > On Mon, Oct 26, 2009 at 10:50 AM, Lester Chua > wrote:

Setup for stepping into wicket source in eclipse

2009-10-25 Thread Flavius
I am trying to debug an issue and am trying to step into wicket from my project. However, the line numbers are not matching up with the source I have. I've done this several times with other projects and this is indicative of having the wrong version of the source vs. the jar file. I am using