Re: WicketTester and the test of image visibility

2011-02-04 Thread Dmitriy Neretin
Could you provide me a simple exmaplte how can I do that? Thank you! On 3 February 2011 18:33, Igor Vaynberg igor.vaynb...@gmail.com wrote: visibility can be triggered from a lot of places, isvisible() only checks the visibility flag. the best way to test it is to see if the image tag

Re: Wicket Sessions and Load Balancing

2011-02-04 Thread Setya
Hi, I'm experiencing the same problem, only I use mod_jk. How did you solve the problem ? Thanks Regards, Setya -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Sessions-and-Load-Balancing-tp2274552p3259914.html Sent from the Users forum mailing list

Re: http 500 status on GitHub

2011-02-04 Thread Martin Funk
thank you by the way, they fixed it in the meantime. mf Am 26.01.2011 um 21:00 schrieb Igor Vaynberg: works for me :/ -igor On Wed, Jan 26, 2011 at 11:42 AM, Martin Funk mafulaf...@googlemail.com wrote: Hi, anyone experiencing something similar, as I described here?

Re: MarkupId generation

2011-02-04 Thread Uwe Schäfer
On 02/04/2011 05:02 AM, msj121 wrote: Well I think that all of the markup ids being output are based off of the name in wicket:id=name. If memory serves correct so the easiest (ie: less obtrusive) solution is to simply change your tags. this is only true for development mode. in deployment,

Re: Submit form after onchange of Field

2011-02-04 Thread MattyDE
Very nice. Thanks a lot for your reply :) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Submit-form-after-onchange-of-Field-tp3236003p3259960.html Sent from the Users forum mailing list archive at Nabble.com.

Simplified visibility control of Enclosures in Ajax requests

2011-02-04 Thread Joo Hama
I just posted a new feature to JIRA with the topic: Simplified visibility control of Enclosures in Ajax requests. I also posted a patch against wicket 1.4.15 that implements this feature. https://issues.apache.org/jira/browse/WICKET-3422 Problem: The amount of boilerplate code needed to

Re: double validation with two different values for a text field

2011-02-04 Thread Pedro Santos
I guess you added an IValidator to the text field validating the input for US zip before, both remove it from the component when this is not the country being informed, or provide an IValidator aware of the selected country, as your textfield already are: determining the converter to be used based

Re: AjaxLazyLoadPanel question

2011-02-04 Thread Pedro Santos
I Matt, try to decorate the AJAX javascript to show/hide the indicator using an IAjaxCallDecorator On Thu, Feb 3, 2011 at 5:40 PM, Matt Schmidt mschmid...@gmail.com wrote: I currently have a DataGridView loaded inside of an AjaxLazyLoadPanel, including the service call to get the data.

Re: How to append an # anchor to an href?

2011-02-04 Thread norckon
Hi, I'm having the exact same problem; I want an #anchor added to the URL my Link generates, but after clicking the Link, the user is redirected to the mount URL (with version number, '/mypage.0.2'), loosing the anchor. Since this topic is last replied to in 2007, are there any new solutions

Re: File upload progress bar

2011-02-04 Thread Valentin Avksentyev
So has anyone out there has been able to get the upload progress bar working? If so, please advise. I definitely don't mind putting together a quickstart, are there directions for that anywhere? -Valentin On Feb 3, 2011, at 10:18 AM, Valentin Avksentyev wrote: No I'm testing on my own

Re: File upload progress bar

2011-02-04 Thread moèz ben rhouma
If the example doesn't work so I think the problem in your browser. Try to empty the cache, cookies, histories ... and tries again. 2011/2/2 Valentin Avksentyev v...@360works.com Hi I've been beating my head against the wall with this. I'm overriding newWebRequest in my Application class:

Re: File upload progress bar

2011-02-04 Thread James Carman
http://wicket.apache.org/start/quickstart.html On Fri, Feb 4, 2011 at 8:17 AM, Valentin Avksentyev v...@360works.com wrote: So has anyone out there has been able to get the upload progress bar working?  If so, please advise. I definitely don't mind putting together a quickstart, are there

Re: Ajax wizard and page anchor

2011-02-04 Thread N. Metzger
Hi all, as we're talking anchors today, does anybody have an idea about how to change the anchor from the next button to the top of the page? Also: has anybody tried to nest wizards? I'd like to have a second wizard as one of my wizard steps. I can just experiment, but if someone has experince

Converter for interface

2011-02-04 Thread Jan Ferko
Hi, I wrote custom converter for entity class. convertToObject() works fine, but I have problem with convertToString(). Since i have different implementations for my entity (immutable and mutable version) I work with their common interface in my web layer and wicket seems not to recognize

Re: Converter for interface

2011-02-04 Thread Pedro Santos
You can override the the application converter locator to return your converter under the instanceof or Class#isAssignableFrom test. I believe Wicket default converter locator don't do so since it can be problematic in some cases. If the text field has the Integer type, you can't use an the

Re: Ajax wizard and page anchor

2011-02-04 Thread Pedro Santos
On Fri, Feb 4, 2011 at 11:48 AM, N. Metzger nmetz...@odu.edu wrote: Hi all, as we're talking anchors today, does anybody have an idea about how to change the anchor from the next button to the top of the page? You can override the Wizard panel and provide your html doing your layout, you

Re: Ajax wizard and page anchor

2011-02-04 Thread Ernesto Reinaldo Barreiro
We have implemented a custom component that acts as a two level (steps + sub-steps) AJAX wizard. It was not difficult to achieve what we wanted, so, I did not try to use the standard wizard and adapt it to this use case. If you are interested I can clean up a bit or classes and share them with

Re: File upload progress bar

2011-02-04 Thread Pedro Santos
Hi Valentin, your code looks good, please fill an ticket with an quickstar reproducing the problem. On Fri, Feb 4, 2011 at 11:21 AM, James Carman ja...@carmanconsulting.comwrote: http://wicket.apache.org/start/quickstart.html On Fri, Feb 4, 2011 at 8:17 AM, Valentin Avksentyev

URL generation

2011-02-04 Thread Uwe Schäfer
Hi i am working on a wicket app which is to be included in some 3rd party page. the page somewhat uses a thing like $.load to include the wicket-generated code. To sum up, wicket has no idea that its created page will be sliced into pieces and included in some other page. any url wicket

Re: Ajax wizard and page anchor

2011-02-04 Thread N. Metzger
Thanks Pedro and Ernesto. And yes, I'll take any code you'd like to share, no need to reinvent the wheel :-) Natalie -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Ajax-wizard-and-page-anchor-tp2223007p3260445.html Sent from the Users forum mailing list archive at

Re: double validation with two different values for a text field

2011-02-04 Thread Doug Leeper
Found out the issue. I was always returning a null value in my converter.convertToObject(). When I returned the parsed value correctly...everything worked fine. With the null value, for some reason, my underlying object model did not set with a null value. Very bizarre. As far as removing

PageExpiredException since version 1.4.13

2011-02-04 Thread Daniel Soneira
Hi there, I'm experiencing a weird problem that I've tried to solve for 2 days now. After updating Wicket from 1.4.12 to the latest version (1.4.15) because of WICKET-3136 (JVM 1.6 crash) one particular page (bookmarkable) always throws a PageExpiredException on clicking an AjaxSubmitLink. I

Re: PageExpiredException since version 1.4.13

2011-02-04 Thread Zilvinas Vilutis
well it is an open source project - you can checkout source of 1.4.12 and merge the require fix on to it build it yourself. Should be easy if you're not planning to migrate to newer versions :) Žilvinas Vilutis Mobile:   (+370) 652 38353 E-mail:   cika...@gmail.com On Fri, Feb 4, 2011 at

Re: PageExpiredException since version 1.4.13

2011-02-04 Thread Pedro Santos
Hi Daniel, try to increase the application max page map number, if the problem remains we can eliminate the WICKET-3108 as the source. On Fri, Feb 4, 2011 at 2:46 PM, Daniel Soneira daniel.sone...@joyn-it.atwrote: Hi there, I'm experiencing a weird problem that I've tried to solve for 2 days

Re: URL generation

2011-02-04 Thread Erik van Oosten
Hi Uwe, I sometimes use absolute URLs in a project. For code see https://issues.apache.org/jira/browse/WICKET-1974 Regards, Erik. Op 04-02-11 16:46, Uwe Schäfer schreef: Hi i am working on a wicket app which is to be included in some 3rd party page. the page somewhat uses a thing like

Re: MarkupId generation

2011-02-04 Thread msj121
True, perhaps using .setMarkupId(someid);. I had no idea about that in production mode, I guess I never checked, I am still somewhat surprised that is true. You could have an automatic listener that takes the getMarkupId(...) and preppend, or append to the id, or do it by hand (not my favourite

[WUG DK] Wicket User Group DK

2011-02-04 Thread nino martinez wael
Hi Im thinking on hosting a wicket user group event, in DK Farum... Would anyone be interested..? regards Nino