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, wicke

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 --

YUI vs Wicket AutoComplete

2007-10-30 Thread John Patterson
Hi, 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 - To unsubscribe, e-ma

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 AbstractRea

Re: Just 1 hour to introduce Wicket (Friday)

2007-10-30 Thread jweekend
Scott, That's a powerful and well made argument. Thank you, I'm in! I was going to show a simple-arithmetic-test panel (a simple captcha replacement mechanism developed because I can never make out the Wicket ones) and how that can be reused. This went down well at our first http://jweekend.co

Re: Just 1 hour to introduce Wicket (Friday)

2007-10-30 Thread Scott Swank
1. All code is Java, which enables end-to-end refactoring and gives you clean html. 2. Composition enables reuse. When I took a panel and moved it from a tab on a page to a modalwindow on the page by changing a couple of lines of code it made a big impact. 3. Components have session state. Henc

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 Kno

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: 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 e

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

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 http://jWeek

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 o

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

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: 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: Sent: Tuesday, October 30, 2007 11:51 PM Subject: Re: Dynamically changing CSS

Wicket Session Management?

2007-10-30 Thread Pen
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 - about session support - wicket stores the render state of most renderer's in session for different users of the systems. This means large/

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 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:

Security message when using popup dialog

2007-10-30 Thread hillj2
I'm using wicket's popup dialog and it works just fine, but when deploy my app to our test server, which sits behind a proxy using SSL, I get a security message from IE saying "This page contains both secure and nonsecure items" whenever I open the popup. I've traced it to a 404 error which is re

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 underst

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 s

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 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 Any help would be greatly appreciated. igor.vaynberg wr

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

2007-10-30 Thread Frank Bille
On 10/30/07, Johan Compagner <[EMAIL PROTECTED]> wrote: > > +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 johan++

Re: How to manage multiple versions of data?

2007-10-30 Thread Eelco Hillenius
> using long transactions would be pretty horrible :( > long transactions should be avoided like the plague at all cost. > Especially with certain databases (like Microsofts or Sybase variants) I never really used them myself, so that's entirely possible :-) > i would do it how igors proposes. Ha

interframe communication

2007-10-30 Thread aldous
The application I'm working on uses frames and a tree view / results view layout. I've implemented LinkTree in frame one. When the link is clicked, I need to refresh frame two based on information stored in the tree node. I've overridden onNodeLinkClicked in my LinkTree derived class, and I am

Re: IE DownloadLink problems

2007-10-30 Thread Johan Compagner
please make a case for this in jira. (with that patch) On 10/29/07, wheleph <[EMAIL PROTECTED]> wrote: > > > > wheleph wrote: > > > > Content-Disposition attachment; filename=%D0%A1 ... > > I wonder what encoding is it? > > > > It's url encoding. I used URLCodec from commons-codec > (http://common

Re: How to manage multiple versions of data?

2007-10-30 Thread Johan Compagner
using long transactions would be pretty horrible :( long transactions should be avoided like the plague at all cost. Especially with certain databases (like Microsofts or Sybase variants) i would do it how igors proposes. Have multiply rows for the same data with 1 row that is live and another row

Re: how to remove 'choose one' from dropdownlist?

2007-10-30 Thread Bruno Borges
Try with setRequired(true) and set the model with the first option from your choices. -- Bruno Borges blog.brunoborges.com.br +55 1185657739 "The glory of great men should always be measured by the means they have used to acquire it." - Francois de La Rochefoucauld On 10/30/07, raybristol <[E

Re: how to remove 'choose one' from dropdownlist?

2007-10-30 Thread Igor Vaynberg
put an option into your model, that way it will be selected... or override getdefaultchoice() and return "" -igor On 10/30/07, raybristol <[EMAIL PROTECTED]> wrote: > > how to remove 'choose one' from dropdownlist? I can use the dropdownlist > alright, populate data etc. but wicket always put a

Re: TabbedPanel

2007-10-30 Thread Igor Vaynberg
see here for an example: http://wicketstuff.org/wicket13/compref/?wicket:bookmarkablePage=%3Aorg.apache.wicket.examples.compref.TabbedPanelPage -igor On 10/30/07, DRE <[EMAIL PROTECTED]> wrote: > > Hoping someone can help me out here I've just started using Wicket and > this is what I'm tr

Re: Setting up Wicket with Tomcat

2007-10-30 Thread Igor Vaynberg
or just use the damn archetype to create a properly configured project in the first place, thats why we have it... :) http://wicket.apache.org/quickstart.html -igor On 10/30/07, Frank Bille <[EMAIL PROTECTED]> wrote: > On 10/30/07, Alexander Landsnes Keül <[EMAIL PROTECTED]> > wrote: > > > > >

how to remove 'choose one' from dropdownlist?

2007-10-30 Thread raybristol
how to remove 'choose one' from dropdownlist? I can use the dropdownlist alright, populate data etc. but wicket always put a 'choose one' option on the top, I wonder if I can get rid of it? Many thanks! -- View this message in context: http://www.nabble.com/how-to-remove-%27choose-one%27-from-d

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 > > >

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 a

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

2007-10-30 Thread Al Maw
Chris Lintz wrote: Any chance of getting a Beta5 out soon. As luck would have it, Beta4 to say the least has been frustrating for us. So far beta4 has caused these problems in our app (all stuff that worked in Beta3) 1) AJAXLink is broke when using the Crypted URL encoding strategy. 2) String

Re: Setting up Wicket with Tomcat

2007-10-30 Thread Frank Bille
On 10/30/07, Alexander Landsnes Keül <[EMAIL PROTECTED]> wrote: > > > 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"> > Ansatt > >

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. Startpage.h

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

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 tha

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

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]> wro

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 upda

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 wor

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 req

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 clo

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 bloc