Re: [Wicket-user] AjaxLink setresponse

2006-08-19 Thread Frank Bille
With only 2x+1? Are you crazy?!? I need to have something like 4½x+1 and max. 1x0 and no -1 (or something)- FrankOn 8/18/06, Igor Vaynberg [EMAIL PROTECTED] wrote: no, wicket_1_2_1 branch was a mistake - it is supposed to be a label that marks the code that went into 1.2.1 release not a branch -

[Wicket-user] PasswordTextField throwing a java.security.NoSuchAlgorithmException

2006-08-19 Thread Tim Fletcher
Hi, i searched the list for this problem, but could only find information about cvs commits. I'm trying to use the PasswordTextField, but when i submit the form, I get the following exception: java.security.NoSuchAlgorithmException: Algorithm PBEWithMD5AndDES not available Thanks in advance, Tim

Re: [Wicket-user] Woogle and Woogle

2006-08-19 Thread Martijn Dashorst
The-Mean-Search-Machine-For-Finding-The-Coolest-Resources-About-The-Hottest-Tech-Evah! Is soo much a Leonardo da Quirm name, I love it :-) Martijn On 8/15/06, Frank Bille [EMAIL PROTECTED] wrote: Hmm well.. I'm not expecting Woogle to be popular, but maybe you're right anyway. I lige Woogle,

Re: [Wicket-user] wicket-auth-roles-1.2.x

2006-08-19 Thread Martijn Dashorst
Or you could use retro translator to create your own backport to java 1.4 Martijn On 8/15/06, Eelco Hillenius [EMAIL PROTECTED] wrote: Because you can turn on JDK 1.5 features to have the annotation-based authentication mechanism. Yep :) If there is enough interested, we

Re: [Wicket-user] New User Documentation

2006-08-19 Thread Martijn Dashorst
I *love* SuperModels even better On 8/7/06, Johan Compagner [EMAIL PROTECTED] wrote: i love AbstractModels! ;) johan On 8/7/06, landry soules [EMAIL PROTECTED] wrote: Hi, I'm a very new (and very happy) Wicket user. Thanks a lot for this documentation index. About documentation,

Re: [Wicket-user] New User Documentation

2006-08-19 Thread Janne Hietamäki
You clearly had too much fun on your holiday. To be a little less off-topic, could someone with ie7 test wicket ajax examples, and update http://www.wicket-wiki.org.uk/wiki/ index.php/FAQs#Which_browsers_has_been_tested_with_Wicket_AJAX On 19.8.2006, at 16.26, Martijn Dashorst wrote: I

Re: [Wicket-user] New User Documentation

2006-08-19 Thread Martijn Dashorst
I'll post a link to my flickr page when I've sifted through my 700+ photo's and show you only the one's that worked out ;-) Slightly on topic: I don't have IE7 available. Martijn On 8/19/06, Janne Hietamäki [EMAIL PROTECTED] wrote: You clearly had too much fun on your holiday. To be a little

Re: [Wicket-user] A wicket Problem?

2006-08-19 Thread Martijn Dashorst
I haven't used it yet, but I am very fond of the Yahoo approach where they reset all properties to none first, and from there on build up the page: css reset http://developer.yahoo.com/yui/ Martijn On 8/17/06, wired [EMAIL PROTECTED] wrote: Thank you all for replying. I thought Gwyn's

[Wicket-user] How to set the src attribute for a AjaxSubmitButton of type image ?

2006-08-19 Thread Pierre-Yves Saumont
Hello, Can someone tell me how to set the src attribute for a AjaxSubmitButton of type image ? I tried using an AttributeModifier, but in that case, the url is not translated. I was able to hard code the translated url, but this is ugly. What is the correct way to do this ? Thanks,

[Wicket-user] document

2006-08-19 Thread luc jean
I am very new to wicket, I am looking for any good document/ tutorial .Thanks Get your email and more, right on the new Yahoo.com - Using Tomcat but need to do more? Need to support web services, security? Get stuff

Re: [Wicket-user] PasswordTextField throwing a java.security.NoSuchAlgorithmException

2006-08-19 Thread Johan Compagner
This also happens with a co worker of mine. I don't know exactly why it happens at his pcBecause no one else had problems. So i guess he somehow installed the wrong jdk.I told him to reinstall a complete jdk. Dont know if that did solve it. johanOn 8/19/06, Juergen Donnerstag [EMAIL PROTECTED]

Re: [Wicket-user] document

2006-08-19 Thread Eelco Hillenius
http://www.apress.com/book/bookDisplay.html?bID=10189 Eelco On 8/19/06, luc jean [EMAIL PROTECTED] wrote: I am very new to wicket, I am looking for any good document/ tutorial . Thanks Get your email and more, right on the new Yahoo.com

[Wicket-user] Add another WizardStep conditionally

2006-08-19 Thread De Soca
Hi all, I have tried adding a WizardStep conditionally at runtime a few different ways with limited success. Can someone recommend the best approach to accomplish this? I have based my approach on the Wizard samples supplied, which is probably one of the best components I have found in any

Re: [Wicket-user] getValue(), getInput(), and defaultFormProcessing

2006-08-19 Thread Johan Compagner
getValue() is the rawinput or the value of the model as a string.and rawinput is pretty much the same ais getInputgetInput() is really just getting the input that the browser did sent And a developer really doesn't really have to call this method in normal cases. and that also answers your next

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-19 Thread Roman Mandeleil
I can provide you some sample but I think it will complicate the situation , I want to understand the principle of how it works, I thought the model should be full synchronized with the html on the screen, but maybe the idea is something else ? igor.vaynberg wrote: how about some code of

Re: [Wicket-user] Add another WizardStep conditionally

2006-08-19 Thread Eelco Hillenius
On 8/19/06, De Soca [EMAIL PROTECTED] wrote: Hi all, I have tried adding a WizardStep conditionally at runtime a few different ways with limited success. Can someone recommend the best approach to accomplish this? Did you see UserRolesStep in the NewUserWizard example? That's a conditional

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-19 Thread Igor Vaynberg
yes, it shouldnt be happening thats why i wanted to see your code/markup.have you tried in ffox and ie? sometimes when ajax updating trs you end up with duplicates - so it may just be a case of crappy outerhtml support in the browser. -IgorOn 8/19/06, Roman Mandeleil [EMAIL PROTECTED] wrote: I can

Re: [Wicket-user] Add another WizardStep conditionally

2006-08-19 Thread Nick Heudecker
That's how I do it as well. The solution I wanted was to not have to create the step if I wasn't going to use it, but evaluate() works fine. On 8/19/06, Eelco Hillenius [EMAIL PROTECTED] wrote: On 8/19/06, De Soca [EMAIL PROTECTED] wrote: Hi all, I have tried adding a WizardStep conditionally at

Re: [Wicket-user] Add another WizardStep conditionally

2006-08-19 Thread De Soca
Hi Eelco, thanks for your reply. Yes I have seen UserRolesStep, however in that sample you need to know the type and number of WizardSteps to add beforehand. In my use case I will not know how many of a particular item that a user will be adding at runtime. I hope this makes things a bit

[Wicket-user] Handle String array in PageParameters

2006-08-19 Thread Jean-Baptiste Quenot
Hi, While we are [1]talking about the hacks required to make Wicket work, there's an old one I submitted: [ 1493672 ] Handle String array in PageParameters http://sourceforge.net/tracker/index.php?func=detailaid=1493672group_id=119783atid=684977 Basically the following code:

[Wicket-user] Close input stream in AbstractResourceStream.asString()

2006-08-19 Thread Jean-Baptiste Quenot
Hi, Yet another « hack to make it work »: [ 1543247 ] Close input stream in AbstractResourceStream.asString() http://sourceforge.net/tracker/index.php?func=detailaid=1543247group_id=119783atid=684977 Thanks in advance, -- Jean-Baptiste Quenot aka John Banana Qwerty

Re: [Wicket-user] Add another WizardStep conditionally

2006-08-19 Thread Eelco Hillenius
Yes I have seen UserRolesStep, however in that sample you need to know the type and number of WizardSteps to add beforehand. In my use case I will not know how many of a particular item that a user will be adding at runtime. In that case, you should use a custom IWizardModel. I based the

Re: [Wicket-user] AJAX causes submit to display expired page

2006-08-19 Thread Nili Adoram
Thanks for the reply. We had to develop our own self-updating behavior since wicket does not provide any means for enabling/disabling auto-update per user request. Igor Vaynberg wrote: its probably because your ajax urls are creating new versions of pages - and when you submit the form it