AjaxLazyLoadPanel in Beta3 is very lazy

2007-10-30 Thread SantiagoA
I have a Problem with the ALLP. I have a Table with some Radios in it and an ALLP on the same Site. So, if I click a Radio in the Table, the ALLP will be refreshed with detail Description of the Element clicked in the Table. My Problem is, that there is more functonality in the Page, which is

Re: POM problems in trunk?

2007-10-30 Thread Tauren Mills
I just updated from svn again and I'm still having this problem. I've checked out the entire wicket trunk including jdk-1.4 and jdk-1.5. I just updated and did the following: cd wicket/jdk-1.4/wicket mvn install -Dmaven.test.skip=true But this complains of dependencies missing versions. It

ModalWindow does not close

2007-10-30 Thread Cristi Manole
Hello, I have a problem with ModalWindow. No matter what I do I cannot manage to close it. Although the method for closing it IS INDEED called (and then the focus set to the element that triggered it), the window is still displayed on screen. I managed to track down what's preventing it from

Wicket wiki password reset

2007-10-30 Thread jweekend
The http://jweekend.co.uk/dev/LWUGReg/ London Wicket Users Group entry on the http://cwiki.apache.org/WICKET/community-meetups.html wiki meetups page (good idea, BTW) was out of date and since my username (jweekend)/password didn't get me in to fix it, gerolf kindly did it for us. I have

Re: POM problems in trunk?

2007-10-30 Thread Tauren Mills
Ahh, your right. I'm doing this within eclipse and for some reason was just assuming I was getting all of trunk. But I think I'm just updating all the projects, not updating the root. Now that you mention it, I'm sure it will work. Thanks! On 10/30/07, Martijn Dashorst [EMAIL PROTECTED]

Re: POM problems in trunk?

2007-10-30 Thread Martijn Dashorst
Do a install from the root your parent pom is not up to date in the local repo Martijn On 10/30/07, Tauren Mills [EMAIL PROTECTED] wrote: I just updated from svn again and I'm still having this problem. I've checked out the entire wicket trunk including jdk-1.4 and jdk-1.5. I just updated

Re: ModalWindow does not close

2007-10-30 Thread Matej Knopp
No idea. The javascript has nothing to do with wicket. -Matej On 10/30/07, Cristi Manole [EMAIL PROTECTED] wrote: Hello, I have a problem with ModalWindow. No matter what I do I cannot manage to close it. Although the method for closing it IS INDEED called (and then the focus set to the

Re: AjaxLazyLoadPanel in Beta3 is very lazy

2007-10-30 Thread Johan Compagner
The AjaxLazyLoadingPanel will block other request to it The only thing it does is that it will show the page already and that the heavy part is then loaded so that the users do see progress. The user can fill in stuff or do other stuff pure clientside. If the users does make a server call then

Re: Wicket wiki password reset

2007-10-30 Thread jweekend
Password now reset, thanks Martijn. jweekend wrote: The http://jweekend.co.uk/dev/LWUGReg/ London Wicket Users Group entry on the http://cwiki.apache.org/WICKET/community-meetups.html wiki meetups page (good idea, BTW) was out of date and since my username (jweekend)/password didn't

Setting up Wicket with Tomcat

2007-10-30 Thread Alexander Landsnes Keül
After much sweat and tears I've finally been able to get web.xml to load properly in tomcat, however I'm having a bit of issues actually starting the Web app. What I've got is the very bare bones of a wicket application. Just a class extending WebApplication, and StartPage.java/html.

Re: Setting up Wicket with Tomcat

2007-10-30 Thread Frank Bille
On 10/30/07, Alexander Landsnes Keül [EMAIL PROTECTED] wrote: ?xml version=1.0? web-app xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=http://www.w3.org/TR/xmlschema-1/; xsi:schemaLocation= http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd; version=2.4

TabbedPanel

2007-10-30 Thread DRE
Hoping someone can help me out here I've just started using Wicket and this is what I'm trying to do: I've got a main page that has a header, body, and footer where the body should be used as a wicket child. In the header I have a TabbedPanel. When I click on a tab I want the contents to

Re: Is Beta5 coming soon? Beta4 has caused these issues for us....

2007-10-30 Thread Johan Compagner
+1 i hope that i can close more issues tonight and the comming nights. so that the issues are down a little bit when beta5 is released. johan On 10/29/07, Frank Bille [EMAIL PROTECTED] wrote: Well, I have time on sunday to build the release. What do the other devs think? Frank On

Re: TabbedPanel

2007-10-30 Thread DRE
Thanks for you response that link is actually where I got started, however, if you notice when you click the tabs the panel is displayed right below. When I click my tabs I want the panel to be displayed in the body in place of the wicket:child / Any help would be greatly appreciated.

BUG: Ajax Panel Replacement Issue on Fireforx only (Kind of Complex Scenario)

2007-10-30 Thread Francisco Diaz Trepat - gmail
Hi a cowerker here might have found something here. We have fix the issue by replacing the *Wicket.replaceOuterHtml* function. Could this be a BUG? I have forwarded the initial message that explains the behavior. Here is the code that fixed our problem: f(t) //

Re: TabbedPanel

2007-10-30 Thread Igor Vaynberg
right, and that is just now how markup inheritance or tabbed panel works. you are way off base. if that is what you need then instead of using wicket:child/markup inheritance you should use replace/replaceWith() methods to put the right panel in, and instead of using a tabbed panel you would use

Dynamically changing CSS

2007-10-30 Thread Cristi Manole
Hello, I have a checkbox in an Ajax table (wrote by Igor). On one column i add a panel which contains a checkbox and a link. When the user selects the checkbox I would like that specific table row to be displayed with a different background color. How am I to do that? I didn't manage to

Re: Dynamically changing CSS

2007-10-30 Thread Jon Laidler
You could use CSS. Set the class for the table row to be highlighted (eg ..tr class=trcolor), add a style to the page to set the color of the table row class (eg .trcolor {color: red} ). Then get wicket to change the style color through CSS when the checkbox is selected. Cristi Manole wrote:

Re: BUG: Ajax Panel Replacement Issue on Fireforx only (Kind of Complex Scenario)

2007-10-30 Thread Matej Knopp
Sorry, I'm not sure I follow. there is some code in replaceOuterHtml that seems redundant so it could be like this: Wicket.replaceOuterHtml = function(element, text) { if (Wicket.Browser.isIE()) { Wicket.replaceOuterHtmlIE(element, text);

Re: Dynamically changing CSS

2007-10-30 Thread Cristi Manole
Tks a lot for your reply, but how do I do get wicket to change the style color of that speciffic row, exactly? that part I don't know... :( - Original Message - From: Jon Laidler [EMAIL PROTECTED] To: users@wicket.apache.org Sent: Tuesday, October 30, 2007 11:51 PM Subject: Re:

Just 1 hour to introduce Wicket (Friday)

2007-10-30 Thread jweekend
A development team I did some work with (in a top 5 investment bank) today asked me to give them a 1 hour intro to Wicket on Friday morning. I have been telling them it's the way to go for a while and they have finally found an opportunity. I want to make sure I use that hour to best effect, for

Re: Just 1 hour to introduce Wicket (Friday)

2007-10-30 Thread Nick Heudecker
The ONE thing you must not omit is telling them that I provide Wicket consulting. :) On 10/30/07, jweekend [EMAIL PROTECTED] wrote: A development team I did some work with (in a top 5 investment bank) today asked me to give them a 1 hour intro to Wicket on Friday morning. I have been

Re: Wicket Session Management?

2007-10-30 Thread Matej Knopp
Pen wrote / napísal(a): I have a few question regarding the wicket usage. we are trying to Implement wicket as our next MVC framework, Can please someone answer the questions below Hi - about session support - wicket stores the render state of most renderer's in session for different users

Re: Just 1 hour to introduce Wicket (Friday)

2007-10-30 Thread jweekend
Nick, In fact that's why someone from jWeekend first wrote to you in May when you were coming to the UK. I can imagine that there'll be lots to do in 2008/9 for jWeekend and Wicket end-users. In the meantime, after I tell them about you, what else must I NOT omit ? ;-) Regards - Cemal

Re: EqualInputValidator inside WizardStep

2007-10-30 Thread Eelco Hillenius
On 10/29/07, Igor Vaynberg [EMAIL PROTECTED] wrote: hrm, i think a good solution to this would be to create a fresh inner form for every new step. so the outer form contains the wizard buttons, and an inner form contains the user's panel. i think for now you can do that yourself, simply embed

Re: How to manage multiple versions of data?

2007-10-30 Thread Tauren Mills
Thanks for the ideas everyone. I do like Igor's suggestion of reusing the same tables and having a live flag, as I'd hate to have an entire extra set of duplicate tables. However, since this approach duplicates data, there are still some issues that I'm not sure how to best deal with. Let me

Re: Security message when using popup dialog

2007-10-30 Thread Martijn Dashorst
look in the source of the page, and possibly try to capture the headers. This will help us in discovering what goes wrong. And please check if you have images without a src attribute or an empty src attribute. That seems to cause problems too (though possibly not this one). Martijn On 10/30/07,

Re: Wicket Session Management?

2007-10-30 Thread Pen
Thanks Matej for your quick reply, these are stupid questions asked by the team members, who are resisting to implement Wicket. Trying to come up with some issues. So basically you are telling that session management is not a issue at all in wicket, that's good. Thanks Again! Dummy Matej

Re: Dynamically changing CSS

2007-10-30 Thread Timo Rantalaiho
On Wed, 31 Oct 2007, Cristi Manole wrote: Tks a lot for your reply, but how do I do get wicket to change the style color of that speciffic row, exactly? that part I don't know... :( Something like final Component row = ... row.add(new AttribubuteModifier(class, true, new

Re: YUI vs Wicket AutoComplete

2007-10-30 Thread Eelco Hillenius
I want to use an auto complete component on stateless pages and in theory there should not be a problem with this. Currently the wicket implementation uses the AJAX behaviour functionality which ... waiting for the next episode :-) Eelco

Re: Just 1 hour to introduce Wicket (Friday)

2007-10-30 Thread Jan Kriesten
hi cemal, Not bad for an hour, but there are probably even more essentials that need to be mentioned at least. What have we missed? i find a key selling point to customers that you can easily run unit-tests on your projects - especially if the customers are in banking business. also, wicket's