Re: [Wicket-user] wicket ajax memory leak with IE

2006-04-17 Thread Matej Knopp
That depends.. If it's the example you sent here, the problem might be that the listview always grows. and at the end, you replace like thousands of rows with new ones, increasing the count on every request. No wonder, that the memory is disappearing ;). And there might be even some DOM/innerH

Re: [Wicket-user] wicket ajax memory leak with IE

2006-04-17 Thread Ari Suutari
Hi, As far as I know IE won't fire more than two simultanous http request. So i'm not quite sure about it. OK, I don't know how real this problem would be anyway. However, something still leaks slowly: I left a wicket page using AjaxSelfUpdatingTimer (which fires once per second) runn

[Wicket-user] "*" is not output

2006-04-17 Thread R.A
Hi. I use Wicket 1.2-rc1. I use FormComponentFeedbackBorder, but when input error is occured, "*" is not output. How has meens been changed? -- View this message in context: http://www.nabble.com/%22*%22-is-not-output-t1465629.html#a3961346 Sent from the Wicket - User forum at Nabble.com. ---

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Vincent Jenks
Sorry, IE 6.0 on WinXP SP1, line 7 (I believe it said) - I'm not at work now so I can't be entirely sure...I'm pretty sure it was 7. On 4/17/06, Ramnivas Laddad <[EMAIL PROTECTED]> wrote: > Yep, you are absolutely right. > > Thanks for fixing this quickly. > > -Ramnivas > > Eelco Hillenius wro

Re: [Wicket-user] RC1 - IndexedParamUrlCodingStrategy bug?

2006-04-17 Thread Michael Day
Looks like this is the change that caused this... http://svn.sourceforge.net/viewcvs.py/wicket/trunk/wicket/src/java/ wicket/request/target/coding/ BookmarkablePageRequestTargetUrlCodingStrategy.java? view=diff&r1=5398&r2=5399 Michael Day On Apr 17, 2006, at 7:29 PM, Michael Day wrote: All

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Ramnivas Laddad
Yep, you are absolutely right. Thanks for fixing this quickly. -Ramnivas Eelco Hillenius wrote: That must have been the case where you mount the application on the server root and where you don't use a web app name. Fixed in trunk. Eelco On 4/17/06, Ramnivas Laddad <[EMAIL PROTECTED]>

Re: [Wicket-user] call for i18n contributions

2006-04-17 Thread Eelco Hillenius
Very cool. I don't think we can put it in a file like that though. Martijn warned that we should use unicode characters for anything fancier than old ASCII. For instance, a line of the Chinese translation is NumberValidator.minimum = '${input}' \u5FC5\u9808\u5927\u65BC ${minimum} If I understand

[Wicket-user] RC1 - IndexedParamUrlCodingStrategy bug?

2006-04-17 Thread Michael Day
All of my pages which are mounted with IndexedParamUrlCodingStrategy are throwing this exception: Root cause: wicket.WicketRuntimeException: Not all parameters were encoded. Make sure all parameter names are integers in consecutive order starting with zero. Current parameter names are: [0,

RE: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Gustavo Hexsel
Actually, the last problem was (base form not being validated) turned out to be a problem with my contribution: - I have a Button in the form, so I should be calling the submit(buttonId) instead of just submit(), else it calls the "Form.submit()" method instead. WicketTester behaves similar

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Eelco Hillenius
Could you please provide the exact line of that error, and tell us which browser you are using? Thanks, Eelco On 4/17/06, Vincent Jenks <[EMAIL PROTECTED]> wrote: > I'm getting an "Object expected" javascript error on every page...did > I forget a jar or something? These pages don't have any o

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Eelco Hillenius
That must have been the case where you mount the application on the server root and where you don't use a web app name. Fixed in trunk. Eelco On 4/17/06, Ramnivas Laddad <[EMAIL PROTECTED]> wrote: > Just switched over to rc1 and I started getting the following exception for > every request. >

Re: [Wicket-user] call for i18n contributions

2006-04-17 Thread ali
from Iran : fa_IR RequiredValidator= ورودی '${label}' مورد نیاز است. TypeValidator='${input}' یک ${type} معتبر نیست. NumberValidator.range=${input} باید بین ${minimum} و ${maximum} باشد. NumberValidator.minimum='${input}' باید بزرگتر از ${minimum} باشد. NumberValidator.maximum='${input}' باید

RE: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Gustavo Hexsel
No problem. For some of them, I'm pretty sure I was misusing the API... that's why I asked what the differences were. Here's a few problems I've found: - WicketTester's init() method (which overrides the WebApplication's) wasn't being called upon creation. Now it seems to be called. I had

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Vincent Jenks
I'm getting an "Object expected" javascript error on every page...did I forget a jar or something? These pages don't have any of my own javascript so I'm assuming it has something to do w/ the wicket cookie scripts I'm seeing while viewing the generated source in the browser. Those scripts don't

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Eelco Hillenius
Hi Gustavo, Sorry for the inconvenience. What kind of test cases are failing? If you use jWebUnit tests, you probably should set HttpUnitOptions.setExceptionsThrownOnScriptError(false); as jWebUnit does not seem not recognize history as a valid javascript property. Could you give more specifics

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Ramnivas Laddad
Just switched over to rc1 and I started getting the following exception for every request. String index out of range: -1 java.lang.StringIndexOutOfBoundsException: String index out of range: -1     at wicket.util.string.AppendingStringBuffer.charAt(AppendingStringBuffer.java:247)     at wicket

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Vincent Jenks
I just dropped wicket 1.2RC1 into my 1.1.1-based shopping cart and only had to change two lines to get it working! Whoo hooo! I'm going to run some benchmarks against it this weekend to see the improvements. On 4/17/06, Gustavo Hexsel <[EMAIL PROTECTED]> wrote: > Also, a suggestion: the licens

RE: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Gustavo Hexsel
Also, a suggestion: the licenses for ognl and echo2 are still being shipped, although the jars were already removed. []s Gus -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Martijn Dashorst Sent: April 17, 2006 2:41 PM To: Wicket User Subject: [Wicket

RE: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Gustavo Hexsel
Argh, my tests don't run anymore. Is there a place where I can find the detailed changelog between 1.2b3 to 1.2rc1? []s Gus -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Martijn Dashorst Sent: April 17, 2006 2:41 PM To: Wicket User Subject: [Wicket

[Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Martijn Dashorst
The first release candidate of the 1.2 version of Wicket and its subprojects is available for download.You can download the release here: http://sourceforge.net/project/showfiles.php?group_id=119783Available in this release are: o wicket o wicket-extensions o wicket-examples o wicket-auth-roles o

Re: [Wicket-user] call for i18n contributions

2006-04-17 Thread Martijn Dashorst
Can everyone please supply the properties using the \u00AB notations (unicode substitutions) for the strings? With binary files we can't build a correct file as Wicket is to run on several platforms, including unix/linux derivatives. MartijnOn 4/17/06, Eelco Hillenius < [EMAIL PROTECTED]> wrote: Hi

Re: [Wicket-user] [Wicket Extensions] DatePicker component under Internet Explorer

2006-04-17 Thread Juergen Donnerstag
I just deployed 1.2b3 on wicket-library and tested it with IE6 and Firefox. No problems. juergen On 4/17/06, Rémy Rakic <[EMAIL PROTECTED]> wrote: > Hi guys, > I was testing the form components on the wicket-library website > (http://www.wicket-library.com/wicket-examples/forminput) under IE, and

[Wicket-user] Re: call for i18n contributions

2006-04-17 Thread Eelco Hillenius
Also, it would be really cool to have as many languages as possible for the FormInput example of wicket-examples. Contributions are welcome! Eelco On 4/17/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > Hi all, > > As you might have noticed, we implemented some default validator > messages (Appl

Re: [Wicket-user] Yahoo Calendar component

2006-04-17 Thread Eelco Hillenius
Yep, YUI has no future in core, at least not in the short term. I couldn't find enough time to properly build/ support it. Josua Lim and I moved the YUI code out of extensions into wicket-contrib-yui and wicket-contrib-yui-examples (wicket-stuff) where it will hopefully grow into a useful library.

Re: [Wicket-user] wicket:preview feature

2006-04-17 Thread Juergen Donnerstag
It is in the examples and wicket-bench the eclipse plugin supports it as well. Everything else, please see the blog Juergen On 4/17/06, karthik Guru <[EMAIL PROTECTED]> wrote: > Is the excellent feature already in the core/extensions? If yes, could > someone please tell me where can i find it and

Re: [Wicket-user] Yahoo Calendar component

2006-04-17 Thread Martijn Dashorst
It has moved to its own project on wicket-stuff, in order to give it a separate release cycle of the Wicket core projects (and to a allow other developers to work on it, as our schedule is already swamped).So it won't be a part of the core project and extensions for 1.2 final. you will be able to

[Wicket-user] [Wicket Extensions] DatePicker component under Internet Explorer

2006-04-17 Thread Rémy Rakic
Hi guys, I was testing the form components on the wicket-library website (http://www.wicket-library.com/wicket-examples/forminput) under IE, and the date picker seems to have some trouble. It works fine under Firefox, but IE complains about some errors (which i believe are javascript errors). I

Re: [Wicket-user] wicket:preview feature

2006-04-17 Thread karthik Guru
Is the excellent feature already in the core/extensions? If yes, could someone please tell me where can i find it and if possible how to get it to work. Is the blog entry up-to-date wrt usage. thanks, karthik --- This SF.Net email is sponsored

[Wicket-user] Yahoo Calendar component

2006-04-17 Thread Mats Norén
Hi, I'm curious about the future plans for the Yahoo Calendar component in the 1.2 release? Could one of the developers shed some light on the subject? :) /Mats --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language t

Re: [Wicket-user] Dojo versions

2006-04-17 Thread Martijn Dashorst
Our (former) scholars that created the wicket-contrib-dojo package assured me that they will update the contrib-dojo as soon as wicket-1.2 is out. They didn't want to spend their evenings keeping up with head.However, if you have the time, you are welcome to submit a patch to make it work. MartijnO

Re: [Wicket-user] WebPage generated script problem

2006-04-17 Thread Johan Compagner
we should add it everywhere:http://www.w3schools.com/tags/tag_script.aspit is a required tag.And language is depricated and shouldn't be used. johanOn 4/17/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: Searching through the code there are quite some locations where wejust do

Juergen

Re: [Wicket-user] WebPage generated script problem

2006-04-17 Thread Johan Compagner
ha! i completely overlooked that because right above for the include it is type ...On 4/17/06, Mark Derricutt < [EMAIL PROTECTED]> wrote:language="text/_javascript_"  I hope thats just a major typo from type="text/_javascript_" ? On 4/17/06, Johan Compagner < [EMAIL PROTECTED]> wrote:that can'

Re: [Wicket-user] WebPage generated script problem

2006-04-17 Thread Juergen Donnerstag
Searching through the code there are quite some locations where we just do Juergen On 4/17/06, Mark Derricutt <[EMAIL PROTECTED]> wrote: > language="text/javascript" I hope thats just a major typo from > type="text/javascript" ? > > > On 4/17/06, Johan Compagner < [EMAIL PROTECTED]> wrote:

Re: [Wicket-user] WebPage generated script problem

2006-04-17 Thread Mark Derricutt
language="text/_javascript_"  I hope thats just a major typo from type="text/_javascript_" ?On 4/17/06, Johan Compagner < [EMAIL PROTECTED]> wrote:that can't be done. Because if i do this: