Re: nuke the sourceforge lists!

2007-08-14 Thread C. Bergström
Maurice Marrink wrote: > Please remove the users, or at least me from the sourceforge lists :) > Per the headers for anyone interested.. I think hitting reply all to this email should work.. ./C -

Wicket-1.3-beta2 validation (conversion) bug?

2007-08-14 Thread Alex Objelean
After migrating from wicket-1.2.6 to wicket-1.3.0-beta2 I had the following problem: application throws ConversionException when trying to convert a null value of the Textfield wich is disabled on the clientside. I've take a look on the convert() method of the FormComponent class and noticed th

Re: nuke the sourceforge lists!

2007-08-14 Thread Martijn Dashorst
This is about the *SOURCEFORGE* lists, not the apache lists. Your suggestion will unsubscribe everyone from the apache lists. Martijn On 8/14/07, "C. Bergström" <[EMAIL PROTECTED]> wrote: > Maurice Marrink wrote: > > Please remove the users, or at least me from the sourceforge lists :) > > > Per

Re: nuke the sourceforge lists!

2007-08-14 Thread Thies Edeling
You can still unsubscribe using the sourceforge web interface: https://lists.sourceforge.net/lists/listinfo/wicket-user Martijn Dashorst wrote: This is about the *SOURCEFORGE* lists, not the apache lists. Your suggestion will unsubscribe everyone from the apache lists. Martijn On 8/14/07, "C

Putting wicket:message tag into javascript

2007-08-14 Thread Andrew Moore
Hi, I've got a bit of javascript as below: Show help here The only problem is, is that instead of just passing through help.username.title to the javascript method showHelp, I'm actually wanting to pass through help title but I just can't work out how to do it (if it's possible at all) It all ge

Re: Phone book example

2007-08-14 Thread jimmy . lawrence
http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-phonebook Many thanks JL Internet [EMAIL PROTECTED] 13/08/2007 20:36 Please respond to users@wicket.apache.org To users cc Subject Re: Phone book example Where did you find this link, so we can update it? The correct link i

Re: Putting wicket:message tag into javascript

2007-08-14 Thread Alex Objelean
You should create a js code on the server side, this way you can pass to js the resourceKey value at the runtime. Andrew Moore wrote: > > Hi, > I've got a bit of javascript as below: > Show help here > > The only problem is, is that instead of just passing through > help.username.title to the

Re: Wicket-1.3-beta2 validation (conversion) bug?

2007-08-14 Thread Matej Knopp
I'm not sure if it's bug in wicket. So your is disabled, but the TextField component is not? That's not good, you need to disable the TextField too in that case. -Matej On 8/14/07, Alex Objelean <[EMAIL PROTECTED]> wrote: > > After migrating from wicket-1.2.6 to wicket-1.3.0-beta2 I had the foll

Re: Wicket-1.3-beta2 validation (conversion) bug?

2007-08-14 Thread Alex Objelean
This means that the component enable state must be always in sync with the client side state? Shouldn't it be set automatically as not enabled after the submit occurs? On the other hand, the same code worked great on the wicket-1.2.x branch.. Please help! Matej Knopp-2 wrote: > > I'm not sur

Namespace change for Wickets xhtml tags in 1.3?

2007-08-14 Thread Erik van Oosten
Hi, Since the namespace for Wicket tags is now "http://wicket.sourceforge.net/"; I was wondering whether this will change in 1.3. I only found one incomplete thread regarding this subject: http://www.nabble.com/Move-to-Apache%3A-Namespace--tf2454545.html#a6850892 Regards, Erik. -- Erik van

Re: Wicket-1.3-beta2 validation (conversion) bug?

2007-08-14 Thread Matej Knopp
At this point I don't know why the check was removed, but i suppose there was a reason for it. I'm not sure whether we should support the state when client and server are out of sync. -Matej On 8/14/07, Alex Objelean <[EMAIL PROTECTED]> wrote: > > This means that the component enable state must b

Re: Wicket-1.3-beta2 validation (conversion) bug?

2007-08-14 Thread Alex Objelean
I'm very curious why the check was removed. Anyway, is it possible to update the ENABLED flag of the form component on submit by checking if the "disabled" attribute is present in the markup? I'm still not sure if there is something I can do about this, or it is the wicket bug that should be fix

setResponsePage redirects to wrong url

2007-08-14 Thread Andrew Klochkov
When I do setResponsePage(MyHomePage.class) IE tries to show me "my.site.com/./" url and gets 404 response. Firefox just shows "my.site.com" without any troubles. I'm using wicket 1.3-beta2 and WicketFilter mapped to /*. Is it a known bug? Is there a workaround? -- Andrew Klochkov ---

Re: setResponsePage redirects to wrong url

2007-08-14 Thread Andrew Klochkov
Andrew Klochkov wrote: > When I do setResponsePage(MyHomePage.class) IE tries to show me > "my.site.com/./" url and gets 404 response. Firefox just shows > "my.site.com" without any troubles. > > I'm using wicket 1.3-beta2 and WicketFilter mapped to /*. > > Is it a known bug? Is there a workaround?

setSerializeSessionAttributes in wicket-1.3.0-beta2

2007-08-14 Thread Alex Objelean
In wicket-1.2.6 I used this in order to not serialize session attributes: [CODE] getDebugSettings().setSerializeSessionAttributes(false); [/CODE] What is equivalent for this in wicket-1.3.0-beta2? Thank you! Alex. -- View this message in context: http://www.nabble.com/setSerializeSessionAttr

how to indicate a model changed when item has been removed?

2007-08-14 Thread Leszek Gawron
Hello, let me outline a problem I have. If you won't get much from my ramblings I'll try to provide a simplified ready-to-run example: I have a list of "thermometers": public ThermometersPanel( String id, IModel model ) { super( id, model ); ad

Re: Real example on Wicket

2007-08-14 Thread Mathias P.W Nilsson
Thanks! I've check out the project in Eclipse but there are error messages all over the place. They mostly consist of M2_REPO error. Is this maven 2? How can I bypass this? Thanks -- View this message in context: http://www.nabble.com/Real-example-on-Wicket-tf4257796.html#a12146465 Sent from t

Re: how to indicate a model changed when item has been removed?

2007-08-14 Thread Leszek Gawron
Leszek Gawron wrote: Hello, let me outline a problem I have. If you won't get much from my ramblings I'll try to provide a simplified ready-to-run example: a small follow up: commenting out child panels: add( new RefreshingView( "list", new PropertyModel( getModel(), "thermo

Wicket testing HTML

2007-08-14 Thread Roy van Rijn
Hi all, I've started working with Wicket about a week ago. I'm now creating tests for my wicket page. The things I'm currently testing is this: public void test() throws ServletException { TestService service = new TestServiceImpl(); AnnotApplicationContex

Re: Real example on Wicket

2007-08-14 Thread Favio
On Tuesday 14 August 2007 12:14, Mathias P.W Nilsson wrote: > Thanks! > > I've check out the project in Eclipse but there are error messages all over > the place. They mostly consist of M2_REPO error. Is this maven 2? How can I > bypass this? try mvn -Declipse.workspace= eclipse:add-maven-repo r

Re: sharing a context menu across components

2007-08-14 Thread Kirk Israel
So I haven't found what setup would provide a reference to the Behavior to the AjaxFallbackLink. Is the problem in how I'm relying on overloading the page's document.oncontextmenu to handle the right click event, and I should be using something else? As a workaround, is there any available Javascr

Re: Real example on Wicket

2007-08-14 Thread Edvin Syse
> try > > mvn -Declipse.workspace= eclipse:add-maven-repo > > replace by your workspace location, like /home/user/workspace > that should add M2_REPO to the variables set Better yet, install the m2eclipse plugin from: http://m2eclipse.codehaus.org/update/ This will keep the dependencies on yo

Ideas for a Wicket Based Cms

2007-08-14 Thread james yong
Hi all, I have plans to work on a new open sourced CMS that would also be useful to others. It will be based on wicket. Some ideas for the 1st phase: 1) It will use Jackrabbit to store CMS-related data 2) To create a page, the administrator starts by selecting a layout, and then select the appr

Re: Real example on Wicket

2007-08-14 Thread Mathias P.W Nilsson
Thanks you but the errors still remain :( -- View this message in context: http://www.nabble.com/Real-example-on-Wicket-tf4257796.html#a12147865 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe,

Re: Ideas for a Wicket Based Cms

2007-08-14 Thread Martijn Dashorst
Take a look at the kronos CMS first (wicketstuff), and possibly Tally-Ho (java.net). Martijn On 8/14/07, james yong <[EMAIL PROTECTED]> wrote: > > Hi all, > > I have plans to work on a new open sourced CMS that would also be useful to > others. It will be based on wicket. > > Some ideas for the 1

Re: Real example on Wicket

2007-08-14 Thread Al Maw
Mathias P.W Nilsson wrote: Thanks you but the errors still remain :( Restart eclipse and they will go away. Al - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Real example on Wicket

2007-08-14 Thread Mathias P.W Nilsson
If finally got it to work. Problem with Maven since it totally new to me. Got it running now :jumping: Thanks! -- View this message in context: http://www.nabble.com/Real-example-on-Wicket-tf4257796.html#a12148908 Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Replacing panels inside a ModalWindow

2007-08-14 Thread al que
Matej, while making the quickstart i realized the problem was do to a css style i did not see that was hiddeing the content. Sorry for the noise and thanks for the help. Alina. --- Matej Knopp <[EMAIL PROTECTED]> escribió: > I need a quickstart that can be use to reproduce the > problem

Re: setResponsePage redirects to wrong url

2007-08-14 Thread Al Maw
Andrew Klochkov wrote: Andrew Klochkov wrote: When I do setResponsePage(MyHomePage.class) IE tries to show me "my.site.com/./" url and gets 404 response. Firefox just shows "my.site.com" without any troubles. I'm using wicket 1.3-beta2 and WicketFilter mapped to /*. Is it a known bug? Is there

Re: Ideas for a Wicket Based Cms

2007-08-14 Thread Eelco Hillenius
two extra points: *) think about bookmarkability/ nice URLs. *) try to make the user-facing side (so the result of what people did with the CMS/ anything that can be accessed without logging in) stateless if you can. Eelco On 8/14/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > 1) It will us

Re: Ideas for a Wicket Based Cms

2007-08-14 Thread Eelco Hillenius
> 1) It will use Jackrabbit to store CMS-related data > 2) To create a page, the administrator starts by selecting a layout, and > then select the appropriate panels to fill the layout. The configuration can > be stored in an OODB like db40. The page are virtual, but the CMS will use > reflection t

Re: setSerializeSessionAttributes in wicket-1.3.0-beta2

2007-08-14 Thread Eelco Hillenius
On 8/14/07, Alex Objelean <[EMAIL PROTECTED]> wrote: > > In wicket-1.2.6 I used this in order to not serialize session attributes: > > [CODE] > getDebugSettings().setSerializeSessionAttributes(false); > [/CODE] > > What is equivalent for this in wicket-1.3.0-beta2? > > Thank you! There is none, bu

Re: setSerializeSessionAttributes in wicket-1.3.0-beta2

2007-08-14 Thread Eelco Hillenius
On 8/14/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > On 8/14/07, Alex Objelean <[EMAIL PROTECTED]> wrote: > > > > In wicket-1.2.6 I used this in order to not serialize session attributes: > > > > [CODE] > > getDebugSettings().setSerializeSessionAttributes(false); > > [/CODE] > > > > What is equ

AJAX Frozen

2007-08-14 Thread andrea pantaleoni
Hi, I have few pages with a lot of ajax behaviors. When an ajax error occurs al the others ajax behaviors are frozen. Even you cannot close a ModalWindow if that happens and the user have to reload the page There some workaround for that. Any help? Thanks -- View this message in context: http:/

TextField onclick ajax

2007-08-14 Thread andrea pantaleoni
Hi, In a Page I have a TextField component and few DropDownChoice inside a form. When I add a behaviour to the DropDownChoice I can read the value the user selected and change consequently the other page component. Instead when I try to add a ajax behavior to a button for reading the textfield va

Re: TextField onclick ajax

2007-08-14 Thread Gerolf Seitz
to submit the form via ajax, you should use AjaxFormSubmitBehavior. gerolf On 8/14/07, andrea pantaleoni <[EMAIL PROTECTED]> wrote: > > > Hi, > In a Page I have a TextField component and few DropDownChoice inside a > form. > When I add a behaviour to the DropDownChoice I can read the value the

Client Timezone in ClientProperties

2007-08-14 Thread Gumnaam
I see that there is a method called getTimezone() on the ClientProperties object. The javadoc for it says "Get the client's time zone if that could be detected." I tried to get this property, by submitting request from various browsers on various platforms, but it always returns null. Can so

TreeTable question

2007-08-14 Thread Doug Leeper
I am using the Tree Table component in Wicket Extensions. I would like to do the following: Background: I have N number of columns: Column 1: operation panel (operations available for the particular tree node item) Column 2: the tree node Column 3-N: attributes about the tree node item I would

Caching the context path

2007-08-14 Thread David Leangen
I'm attempting to mount one instance of wicket on more than one context path. However, something is not working as I expect it to from within Wicket, due to some kind of caching going on. Essentially, I have my servlet container setup so that both of the following get routed to the same instance

Re: setSerializeSessionAttributes in wicket-1.3.0-beta2

2007-08-14 Thread Alex Objelean
Thank you Eelco for the answer! I find it useful to turn it off, because my recent application profiling proved that the application becomes very slow when working with huge objects or very long lists, mostly because of serialization. Eelco Hillenius wrote: > > On 8/14/07, Eelco Hillenius <[EM

Re: Client Timezone in ClientProperties

2007-08-14 Thread Eelco Hillenius
> I see that there is a method called getTimezone() on the > ClientProperties object. > > The javadoc for it says > "Get the client's time zone if that could be detected." > > I tried to get this property, by submitting request from various > browsers on various platforms, > but it always returns n

Re: Wicket-1.3-beta2 validation (conversion) bug?

2007-08-14 Thread Alex Objelean
I found a quick fix for my issue: instead of disabling the Textfield, I make it readonly... still wondering why the change has been made in the convert() method. Matej Knopp-2 wrote: > > At this point I don't know why the check was removed, but i suppose > there was a reason for it. I'm not su

Ajax refresh of DefaultDataTable in wicket-phonebook

2007-08-14 Thread Tauren Mills
For some reason when I do an ajax refresh of the DefaultDataTable in wicket-phonebook, the FilterToolbar disappears. I see it in the Ajax Debugger, but it doesn't display on the screen. This is only happening in FF, not IE (only tested on WinXP). I cannot see any difference between the html that