Re: [Wicket-user] PageLink onClick, never gets called?

2006-06-09 Thread Nino Wael
, never gets called? the markup is a submit button. not a link. Or make the markup a link or make the PageLink a Button. jhan On 6/9/06, Nino Wael < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>

[Wicket-user] wicket.markup.html.tree

2006-06-14 Thread Nino Wael
Hi Guys Anyone knows if theres a demo of the wicket.markup.html.tree component anywhere? regards Nino <>___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user

Re: [Wicket-user] wicket.markup.html.tree

2006-06-14 Thread Nino Wael
14.6.2006, at 11.49, Nino Wael wrote: Hi Guys Anyone knows if theres a demo of the wicket.markup.html.tree component anywhere? See http://www.wicket-library.com/wicket-examples/nested Janne Hietamäki Cemron Ltd

[Wicket-user] Multipleforms good idea?

2006-06-23 Thread Nino Wael
Hi   I’ve been creating some different components with wicket, so that I can reuse them. On some of my pages there is stuff which does not encourage reuse. All my components have their own form, none of them have regular submit buttons. This is handled in another component, which also ha

Re: [Wicket-user] Multipleforms good idea?

2006-06-26 Thread Nino Wael
as a whole. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: Friday, June 23, 2006 2:48 AM To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] Multipleforms good idea? Hi

[Wicket-user] Creating a component / dynamic casting / implicit casting

2006-07-06 Thread Nino Wael
Hi Im currently working on a component that consists of a dropdown list and two listbox's, lb1 and lb2. This is pretty simple to do. My issue isnt really a wicket one, but I guess it has relevance since this is something I need to solve to create my component. The hard part is that the conten

Re: [Wicket-user] Creating a component / dynamic casting / implicit casting

2006-07-06 Thread Nino Wael
propertymodel class so that it can take parameters also instead of just calling setters and getters... :) -regards Nino -Original Message- From: [EMAIL PROTECTED] on behalf of Nino Wael Sent: Thu 06-07-2006 14:01 To: wicket-user@lists.sourceforge.net Cc: Subject:Creating a

Re: [Wicket-user] Creating a component / dynamic casting / implicitcasting

2006-07-07 Thread Nino Wael
component / dynamic casting / implicitcasting   why not use models, see how the ajax dropdown example works. -Igor On 7/6/06, Nino Wael <[EMAIL PROTECTED] > wrote: I solved the problem by requiring a interface instead of the object. But that means that, every where my component ar

Re: [Wicket-user] Several times the same panel on a page

2006-07-10 Thread Nino Wael
Why dont you just use a listview? regards Nino -Original Message- From: [EMAIL PROTECTED] on behalf of Alban Duval Sent: Mon 10-07-2006 13:30 To: wicket-user@lists.sourceforge.net Cc: Subject:[Wicket-user] Several times the same panel on a page Hi all, I'd like to

[Wicket-user] wicket.markup.html.include.Include / encoding error

2006-07-11 Thread Nino Wael
Hi   Im a little curious about this. I have an file stream which is delivered(actually a html file) to me, I then write the file as a temporary file:   String path = ((WebRequest) page.getRequest())       

[Wicket-user] wicket.markup.html.form.CheckBox vs wicket.ajax.form.AjaxFormComponentUpdatingBehavior = not working?

2006-07-13 Thread Nino Wael
Hi Im currently working on a checkbox that needs to do some stuff on a onchange request. However it looks as the AJAX call never is made, I have other ajax calls on the page that works just fine (also using the onchange modifier) When looking at the below code it should work fine it seems t

Re: [Wicket-user] wicket.markup.html.form.CheckBox vswicket.ajax.form.AjaxFormComponentUpdatingBehavior = not working?

2006-07-13 Thread Nino Wael
/06, Nino Wael <[EMAIL PROTECTED]> wrote: > Hi > > Im currently working on a checkbox that needs to do some stuff on a onchange > request. > > However it looks as the AJAX call never is made, I have other ajax calls on > the page that works just fine (also using the on

Re: [Wicket-user] wicket.markup.html.form.CheckBox vswicket.ajax.form.AjaxFormComponentUpdatingBehavior = not working?

2006-07-13 Thread Nino Wael
06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: Did you do myForm_sammen.setOutputMarkupId(true) in your page constructor? Martijn On 7/13/06, Nino Wael <[EMAIL PROTECTED]> wrote: > Hi > > Im currently working on a checkbox that needs to do some stuff on a onchange request. &g

[Wicket-user] Playing with models:)

2006-07-13 Thread Nino Wael
Hah got your Attention there, though sadly enough its only abstractmodels.   Im not sure when getObject are supposed to be called(what triggers a call).   The following I can see are that my model are called on page construct(which makes sense to me). But on form submit the model are ca

Re: [Wicket-user] wicket.markup.html.include.Include / encodingerror

2006-07-14 Thread Nino Wael
@lists.sourceforge.net Subject: Re: [Wicket-user] wicket.markup.html.include.Include / encodingerror You have to use a reader for that instead of an inputstream. See Java IO's documentation for more on that. Eelco On 7/11/06, Nino Wael <[EMAIL PROTECTED]> wrote: > > > > Hi > > >

Re: [Wicket-user] wicket.markup.html.form.CheckBoxvswicket.ajax.form.AjaxFormComponentUpdatingBehavior = not working?

2006-07-14 Thread Nino Wael
icket-user] wicket.markup.html.form.CheckBoxvswicket.ajax.form.AjaxFormComponentUpdatingBehavior = not working?   oops, i thought i fixed that (onchange->onclick) before 1.2 final, but i guess not. until 1.2.1 comes out you are prob then better off using what you have now, or use 1.2 from svn -Igor On 7/13/06, Nino

Re: [Wicket-user] Playing with models:)

2006-07-14 Thread Nino Wael
On 7/14/06, Nino Wael <[EMAIL PROTECTED]> wrote: > > > > Hah got your Attention there, though sadly enough its only abstractmodels. > > > > Im not sure when getObject are supposed to be called(what triggers a call). > > > > The following I can see are

Re: [Wicket-user] Playing with models:)

2006-07-14 Thread Nino Wael
ssing, which is called once at the start of each request. If that's not suitable, you might want to expand on what you're trying to do & during what phase of a request? /Gwyn On 14/07/06, Nino Wael <[EMAIL PROTECTED]> wrote: > Hi Eelco > > It seems as the Load

Re: [Wicket-user] Playing with models:)

2006-07-14 Thread Nino Wael
Subject:Re: [Wicket-user] Playing with models:) But what do you set then? another id? You can't set the object really. Because the object is loaded in the load method by i guess an id. So the id is the real object not the thing that you would get through setObject().. johan

Re: [Wicket-user] Playing with models:)

2006-07-14 Thread Nino Wael
detachable model. But then you need to know the previous selected value of the list. johan On 7/14/06, Nino Wael <[EMAIL PROTECTED]> wrote: So heres what I do, code is possibly flawed. I've tried with the abstractmodel instead which works but gets multiple hits pr request which ma

Re: [Wicket-user] Playing with models:)

2006-07-16 Thread Nino Wael
. johan On 7/14/06, Nino Wael <[EMAIL PROTECTED]> wrote: Ok scratch what I send previously. I'll try to explain more clearly what Im trying to do.   This picture describes show what I have, I'll now try to describe the flow http://www.badongo.com/pic/237253   Th

Re: [Wicket-user] Playing with models:) /wicket.extensions.markup.html.form.palette.Palette;

2006-07-17 Thread Nino Wael
Strange then, it seems as the extension palette does not update on a submit? Does it somehow detach from its model? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eelco Hillenius Sent: 17. juli 2006 12:14 To: wicket-user@lists.sourceforge.net Subject: Re

Re: [Wicket-user] wicket.markup.html.form.CheckBoxvswicket.ajax.form.AjaxFormComponentUpdatingBehavior= not working?

2006-07-17 Thread Nino Wael
]wicket.markup.html.form.CheckBoxvswicket.ajax.form.AjaxFormComponentUpdatingBehavior= not working? I think you need to use AjaxFormComponentUpdatingBehavior so that your model will automatically updated. Eelco On 7/14/06, Nino Wael <[EMAIL PROTECTED]> wrote: > > > > Ok, np just switched back to checkbox and wrote this: > > >

[Wicket-user] Model and setObject?

2006-07-17 Thread Nino Wael
Hi   Starting this over again, trying to explain more clearly what im doing here.   I’ve created a AbstractModel that pretty much works as property model, only difference are that the setObject sets the object and does a little bit more. My model is attached to the wicket.extensions.ma

Re: [Wicket-user] Model and setObject?

2006-07-17 Thread Nino Wael
Hmm, when doing further debug. It seems as the backing object are updated but not via the models setObject command. Is it supposed to work like that?     Regards Nino   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 17. juli 2006 15:02 To

Re: [Wicket-user] Playing with models:)/wicket.extensions.markup.html.form.palette.Palette;

2006-07-18 Thread Nino Wael
the above saves on unnecessary cloning. just a few things to be aware of, whether or not we should call setobject() anyways is still up for discussion. i kinda think we should even though sometimes the objects are the same. -Igor On 7/17/06, Nino Wael <[EMAIL PROTECTED]> wrote: Str

Re: [Wicket-user] Model and setObject?

2006-07-18 Thread Nino Wael
e did need to change some internal things first. I think there is an open bug report for this. johan On 7/17/06, Nino Wael < [EMAIL PROTECTED]> wrote: Hmm, when doing further debug. It seems as the backing object are updated but not via the models setObject command. Is it supposed t

[Wicket-user] wicket extensions palette

2006-07-20 Thread Nino Wael
Hi   What do I need to override in order to populate both listboxes on construction?   Currently I am giving two models that are filled to the palette, but only  the left side listbox are populated, it seems the right side ignores the model?     Regards Nino ---

[Wicket-user] wicket.markup.html.form.checkbox/ajaxform behaviour/set visible(false) -- BUG?

2006-07-20 Thread Nino Wael
Hi I think I might have discovered a bug.   I had a checkbox with some ajax behaviour. On the same page I also had a panel which had some form components in it, one of the components did also use ajax.   I set visible(false) on the checkbox and 3 things happened 1.   checkbox was n

Re: [Wicket-user] wicket.markup.html.form.checkbox/ajaxformbehaviour/set visible(false) -- BUG?

2006-07-21 Thread Nino Wael
ing. But they shouldn't stop other behaviours that are still visible to render the right contributions. Do you have a testcase? johan   On 7/20/06, Nino Wael <[EMAIL PROTECTED]> wrote: Hi I think I might have discovered a bug.   I had a checkbox with some ajax behaviour. O

[Wicket-user] Best way to get contents of the manifest.MF file?

2006-08-15 Thread Nino Wael
Hi whats the best way to retrieve information from the manifest file?   I’ve been looking at servletcontext but that does not seem to be a very wicket like approach?   Should I register the manifest file as a resource and use it that way?     Regards Nino --

Re: [Wicket-user] Internationalization support in Wicket

2006-08-17 Thread Nino Wael
Im not sure if this helps, but take a look at: http://www.wicket-library.com/wicket-examples/pub regards -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of sathya81 Sent: 17. august 2006 07:34 To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] Int

[Wicket-user] Wicket 1.2 and Hibernate 3 slow

2006-08-17 Thread Nino Wael
Hi   I have some pages where I use Hibernate beans to hold the contents of my wicket componts, for example if I have a listbox then each dataItem is a Hibernate bean. There seem to be a performance problem with this when I have postbacks to the page, when using AJAX it does not seem to be

Re: [Wicket-user] Wicket 1.2 and Hibernate 3 slow

2006-08-17 Thread Nino Wael
Please discard the previous mail… It was another problem..   Regards Nino   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 17. august 2006 10:55 To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] Wicket 1.2 and Hibernate 3 slow   Hi

Re: [Wicket-user] Wicket 1.2 and Hibernate 3 slow

2006-08-17 Thread Nino Wael
different with ajax. Because you don't render the complete page. johan On 8/17/06, Nino Wael <[EMAIL PROTECTED]> wrote: Hi   I have some pages where I use Hibernate beans to hold the contents of my wicket componts, for example if I have a listbox then each dataItem is a Hib

Re: [Wicket-user] Dropdown choices in wicket

2006-08-18 Thread Nino Wael
About the dropdown: Use a model, maybe a property model to hold the selected dropdown object. Property models require that there are a get and setter method for the supplied property. You could also use the abstractmodel and implement your own thing, if per say you needed to update something e

Re: [Wicket-user] Dropdown choices in wicket

2006-08-18 Thread Nino Wael
5 drop down choices in a page, then should i create 5 models for each to store the selected values? --Sathya Nino Wael wrote: > > About the dropdown: > > Use a model, maybe a property model to hold the selected dropdown object. > Property models require that there are a get and se

Re: [Wicket-user] Dropdown choices in wicket

2006-08-18 Thread Nino Wael
r the form, if not the page, as that can really cut down on the code you need to write. That also solves where to put any associated data, as the ModelObject that the CPM wraps isn't restricted to /just/ the form data. No need for 'hidden' client-side properties! /Gwyn On 18/08/06, N

[Wicket-user] Session management

2006-08-28 Thread Nino Wael
Hi   I was wondering how wicket maintains it’s session state. We are currently working on a crossbrowser application, where our application(wicket) lives within an Iframe. If we hit refresh on the page, wicket looses its session id. As far as I can see wicket does store the session id in

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Session management     On 28.8.2006, at 10.53, Nino Wael wrote: Hi   I was wondering how wicket maintains it’s session state. We are currently working on a crossbrowser application, where our application(wicket

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
11.00, Nino Wael wrote: That was what I thought, I do know that wicket is not the bad guy hereJ   Whats the default timeout on the cookie? Or am I barking up the wrong leg?   .regards Nino   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Janne Hietamäki Sent

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
-user] Session management What kind of problems do you really have? May be you should check this http://www.wicket-wiki.org.uk/wiki/index.php/Using_frames Janne On 28.8.2006, at 11.23, Nino Wael wrote: Ahh, wasnt sure if you used some

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
Tamper Data and look what is sent to wicket. See if the session cookie is sent to the server yes or no. johan On 8/28/06, Nino Wael <[EMAIL PROTECTED]> wrote: Our problem is that every time you hit the refresh, wicket apparently looses track of session. And creates a new ses

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
This migth be a stupid question but does getPageMap().clear(); clear the session aswell?       Regards Nino   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 28. august 2006 11:04 To: wicket-user

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
"Preferences/Privacy/Cookies/ for the originating site only" should not be set. If the cookie is set, the Cookie-header is sent on every request going to the server and you should see it on Paros. Janne On 28.8.2006, at 11.46, Nino Wael wrote: > Our problem is that every tim

Re: [Wicket-user] Utf-8 woes... (OT)

2006-09-04 Thread Nino Wael
Hi Per Actually we've had a lot of problems here(denmark) first with eclipse encoding of files, eclipse on windows autmaticly encodes in ISO-8859-1. Worked than one through by specifing it via the shortcut for eclipse (vm args) we forced utf-8 on it. Then for a long period we had what we thoug

Re: [Wicket-user] Testing Wicket application

2006-09-07 Thread Nino Wael
Hi We tried jWebUnit aswell and found it very slow to work with, at some point it just became to time consuming(it's properly fine if you have normal simple html pages). Currently we are wondering if we could use Jmeter for unit tests of the GUI, it seems doable but haven't really looked into

[Wicket-user] Javascript property set by javacode?

2006-09-19 Thread Nino Wael
Hi   I have some _javascript_ that I need to modify based on the java code.   I have some _javascript_ that checks all checkboxes or unchecks em all but the ones that are disabled. I’ve created a small component that handles the stuff and placed the _javascript_ in that component as we

Re: [Wicket-user] form with

2006-09-21 Thread Nino Wael
Put the bug on sourceforge, and place the simple test case there as well? regards -Original Message- From: [EMAIL PROTECTED] on behalf of Stefan Lindner Sent: Thu 21-09-2006 11:47 To: wicket-user@lists.sourceforge.net Cc: Subject:Re: form with > because in markup y

Re: [Wicket-user] Javascript property set by javacode?

2006-09-21 Thread Nino Wael
template supports variable substitution. -Igor On 9/19/06, Nino Wael < [EMAIL PROTECTED]> wrote: Hi   I have some _javascript_ that I need to modify based on the java code.   I have some _javascript_ that checks all checkboxes or unchecks em all but the ones that are disabled

[Wicket-user] Datatable/displaying,editing,adding,deleting

2006-09-24 Thread Nino Wael
Hi Whats the bedst component for showing a database table and doing mantainance. Idea is to be able to delete, add, update the table from the component. I've been looking at the repeater component, but im not sure if there is any thing that already has the exact functionallity. regards <>

Re: [Wicket-user] Datatable/displaying,editing,adding,deleting

2006-09-24 Thread Nino Wael
nothing because its trivial to build just a datatable and a column whose markup comes from a fragment that has add/edit/delete/whatever links. -Igor On 9/24/06, Nino Wael <[EMAIL PROTECTED]> wrote: > > Hi > > Whats the bedst component for showing a database table and doing >

[Wicket-user] wicket.util.lang.PropertyResolver / migth be a little offtopic

2006-09-26 Thread Nino Wael
Hi   I need to do something similar as the propertyresolver does. Therefore im writing to the wicket userlist.   I have a component that can update a list of other components by a ajax call. This component also fills out a palette(something similar to the extension.palette).   It ge

Re: [Wicket-user] Wicket arguments for big slow companies (Was:links about wicket scalability...)

2006-09-26 Thread Nino Wael
Hehe, I espcially agree to the unlearning effect. Had a hard time getting used to the fact that wicket controls what are selected in a component... Regards Nino -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eelco Hillenius Sent: 26. september 2006 13:

Re: [Wicket-user] Wicket arguments for big slow companies (Was: links about wicket scalability...)

2006-09-26 Thread Nino Wael
Hi Erik I did not have a very small learning curve, nor did the two other consultants working here. But, I think we all went from JSP/servlets to wicket without the concept of models as you'll get when working with swing. Regards Nino -Original Message- From: [EMAIL PROTECTED] [m

Re: [Wicket-user] wicket.util.lang.PropertyResolver / migth bealittleofftopic

2006-09-26 Thread Nino Wael
s[0];   param[i] = ((IModel) params[1]).getObject(null);     }     return param;     }     From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 26. september 2

Re: [Wicket-user] wicket.util.lang.PropertyResolver / migth be a littleofftopic

2006-09-26 Thread Nino Wael
m[i] = ((IModel) params[1]).getObject(null);     }     return param;     } From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 26. september 2006 12:32 To: wicket-u

Re: [Wicket-user] wicket.util.lang.PropertyResolver / migth be alittleofftopic

2006-09-26 Thread Nino Wael
class cast exception. Reflection will not convert from one object to the other. PropertyResolver is using the given converter for that. johan On 9/26/06, Nino Wael <[EMAIL PROTECTED]> wrote: fillParameters should have looked like this     private

[Wicket-user] progress indicator

2006-09-28 Thread Nino Wael
Hi   We have a form where we would like to disable the complete form onsubmit so that the user cant change any of his selected values and we would like to display a progress meter(it does not have to show the actual progress just a gif like the AJAX examples). I have been thinking of the

Re: [Wicket-user] CheckGroupSelector with CheckBox

2006-09-28 Thread Nino Wael
Why dont you just use the CheckGroup.onchange ? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Decebal Suiu Sent: 27. september 2006 21:01 To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] CheckGroupSelector with CheckBox Can I use CheckGroupS

Re: [Wicket-user] Optional confirmation when cancelling/leaving a form

2006-09-28 Thread Nino Wael
The wicket phonebook has an example on howto do this or at least something similar..   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Macrae, Jeremy Sent: 27. september 2006 15:44 To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] Optional confirmation wh

Re: [Wicket-user] CheckGroupSelector with CheckBox

2006-09-28 Thread Nino Wael
Hmm You cant just use the checkgroupselectors.onchange? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Decebal Suiu Sent: 27. september 2006 21:01 To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] CheckGroupSelector with CheckBox Can I use Che

Re: [Wicket-user] progress indicator

2006-09-28 Thread Nino Wael
; this and that, but you cant force him nor be sure that the data hes > sending is trustful in any way... > > Regards > > > *Von:* [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] *Im Auftr

Re: [Wicket-user] progress indicator

2006-09-28 Thread Nino Wael
>> him he shoud > >>> do this and that, but you cant force him nor be sure that > >> the data hes > >>> sending is trustful in any way... > >>> > >>> Regards > >>> > >>> > >> --

Re: [Wicket-user] CheckGroupSelector with CheckBox

2006-09-28 Thread Nino Wael
Sorry for this previous mail its out of context and wrong. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 28. september 2006 13:59 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] CheckGroupSelector with CheckBox Hmm You

Re: [Wicket-user] Fwd: Can we totally separate styles?

2006-10-03 Thread Nino Wael
Hmm im not completly sure on what you mean. But you could either have a link to the css and use the wicked:head tag to link to it if you are using a panel, or the same just using a package resource reference. You could take a looking how the wicket.extensions.palette handles this (although as I

Re: [Wicket-user] Looking for a forum that implement by wicket and opensource

2006-10-03 Thread Nino Wael
You could take a look at the phonebook example? http://wicket-stuff.sourceforge.net/wicket-phonebook/ -regards Nino -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of ? ?? Sent: 3. oktober 2006 12:44 To: wicket-user@lists.sourceforge.net Subject: [Wicket-u

[Wicket-user] Wicket vs .net/ a friendly pat on wicket core developers shoulders

2006-10-05 Thread Nino Wael
Hi   I’ve been using wicket for some 7 months or so now. As a consultant I’ve seen some different stuff. And in the last job I had, we used  ASP .net(1.1) . And I must say that wicket feels a lot like an upgrade in conceptuality and userfriendlyness. It’s a lot simpler to create your own

[Wicket-user] resend Wicket vs .net/ a friendly pat on wicket core developers shoulders

2006-10-05 Thread Nino Wael
Hi   I’ve been using wicket for some 7 months or so now. As a consultant I’ve seen some different stuff. And in the last job I had, we used  ASP .net(1.1) . And I must say that wicket feels a lot like an upgrade in conceptuality and userfriendlyness. It’s a lot simpler to create your own

Re: [Wicket-user] proof of concept app

2006-10-09 Thread Nino Wael
Looks nice(just skimping the code through without running it though), however I can see that you have extended the session, do you really have a need to store the cart in session context? Why not just create it on PosPage? -regards Nino -Original Message- From: [EMAIL PROTECTED] o

Re: [Wicket-user] onSubmit not called in a form

2006-10-09 Thread Nino Wael
Sounds strange, could you poste the source? AFAIK, two things should happen either you would get what you wanted or you should get an error. Although this migth be changed if you had special error handling that redirects the user to the home page. -Original Message- From: [EMAIL PROT

Re: [Wicket-user] proof of concept app

2006-10-09 Thread Nino Wael
omain is a store, and a cart is information you want to keep throughout, it does make sense to put it in a session, so that you don't have to pass it around your pages and panels all the time. Eelco On 10/9/06, Nino Wael <[EMAIL PROTECTED]> wrote: > Looks nice(just skimping the c

Re: [Wicket-user] onSubmit not called in a form

2006-10-10 Thread Nino Wael
ve no specific error setup (I disabled . So, something else in my app is must be causing this strange behavior. Pierre-Yves Nino Wael a écrit : > Sounds strange, could you poste the source? > > AFAIK, two things should happen either you would get what you wanted or you > should get a

[Wicket-user] mountBookmarkablePage

2006-10-27 Thread Nino Wael
Hi I have a page that are set as mountBookmarkablePage, and it gets its parameters from the   url etc http://localhost:8080/application/page/paramA/valueA/paramB/valueB   When my page has picked up the parameters i wish to clear them so that my url becomes something like http://localho

Re: [Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Nino Wael
Create a HTTP Cookie Manager, and clear cookies after each iteration.. Works here for us. BTW I could send our template if you want to. Regards Nino -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carfield Yim Sent: 27. oktober 2006 08:50 To: wicket-us

Re: [Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Nino Wael
Look at my mail, you really can set the threads to repeat:) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Martijn Dashorst Sent: 27. oktober 2006 09:42 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] How to make wicket testable at jmeter

Re: [Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Nino Wael
: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] How to make wicket testable at jmeter? On 10/27/06, Nino Wael <[EMAIL PROTECTED]> wrote: > Create a HTTP Cookie Manager, and clear cookies after each iteration.. Works > here for us. > that work, cool!!! > >

Re: [Wicket-user] mountBookmarkablePage

2006-10-27 Thread Nino Wael
solute paths for your images and you wont have this problem or mount with a querystringurlcodingstrategy so your url will be application/page?parama=value¶mb=value -Igor On 10/27/06, Nino Wael <[EMAIL PROTECTED]> wrote: Hi I have a page that are set as mountBookmarkablePage, and it gets

[Wicket-user] Too many files open (not related to the other one, my guess)

2006-11-27 Thread Nino Wael
So we have a problem here where something that maybe tomcat or wicket are opening too many handles. The issue are triggered by: * An exception from wicket * Message from wicket that the page has expired * Usage of a specific component that uses AJAX (might be a exception in

[Wicket-user] cancel page load...

2006-11-30 Thread Nino Wael
Hi On one of our pages I've created at cancel button. The functionality are simple, im just doing some simple javascript that reloads the url, however it looks like wicket waits for the original request to complete before loading the new page(hence the cancel button no longer has the desire

Re: [Wicket-user] Palette add selected option

2006-11-30 Thread Nino Wael
I think I have something somewhere... As I remember you need to update the recorder component... Below is only meant as a sniplet(notice the recreate model, which now are called from the palette onchange function).. package com.sas.jobindsats.ui.palette.component; import java.util.ArrayList;

Re: [Wicket-user] Palette add selected option

2006-12-01 Thread Nino Wael
spond but somebody have Already deploy the solution. I m a newbies with Wicket, so i you have a example , it will be nice :) Vincent On Thu, 2006-11-30 at 14:15 +0100, Nino Wael wrote: > I think I have something somewhere... > > As I remember you need to update the recorder component...

Re: [Wicket-user] Palette add selected option

2006-12-01 Thread Nino Wael
I'd like to see the alternative solution you mention if possible? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 1. december 2006 14:08 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Palette add selected optio

Re: [Wicket-user] Palette add selected option

2006-12-04 Thread Nino Wael
still don't find a solution, can you provide me the full component, to see if it correspond to my need :) Thanks for your help (I m a neebies in Wicket) :) On Fri, 2006-12-01 at 14:08 +0100, Nino Wael wrote: > Hi Vincent > > This is an replacement for the recorder component that are used i

[Wicket-user] Lazy mans fix for a cancel button

2006-12-05 Thread Nino Wael
Hey Sometime ago we discussed that I needed a cancel button. The need was there because of a certain page had long loading times, not because of wicket though. We talked about a worker thread so I could start the report generation and then the wicket page could come and ask the worker thread

Re: [Wicket-user] Help with AjaxFormComponentUpdatingBehavior

2006-12-08 Thread Nino Wael
As you write ListChoice are no longer invoked. The ajax event are called afaik after all updates of model has occurred. I actually changed my coding style after this and began using abstract models, its actually much easyer coding this way, and all of your components will be ajax prepaered...:)

Re: [Wicket-user] javascript handlers in html - quotes escaping

2006-12-08 Thread Nino Wael
No true:) Why cant you use ID's? IT is true that forexample dropdown options are created on a specific pattern but it's somewhat easy to create some javascript which adapts that pattern. We use a lot of onchange some which are added in the html at some which are added with the attribute appen

Re: [Wicket-user] Help with AjaxFormComponentUpdatingBehavior

2006-12-08 Thread Nino Wael
With Listchoiec are no longer invoked, I meant listchoice.onchange. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 8. december 2006 12:51 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Help with

Re: [Wicket-user] javascript handlers in html - quotes escaping

2006-12-08 Thread Nino Wael
e: [Wicket-user] javascript handlers in html - quotes escaping Nino Wael wrote: >type="submit" value="Generer rapport" wicket:id="wordbutton" > onclick="showContent('uglyfix');showContent('uniquename');" />

Re: [Wicket-user] Review: Wicket course

2006-12-11 Thread Nino Wael
Looks nice, having planned something similiar(at least using same technoligies) in the future. Having some sort of client with local db, and a backend server. Have you had any trouble maintaining the client/server part of the application and or whats your 2 cent on this topic? _ Fro

[Wicket-user] Download file/ trying to use webresource using wicket 1.2 plain

2006-12-12 Thread Nino Wael
Hi I've trying to use the this example: http://cwiki.apache.org/WICKET/best-practices-and-gotchas.html#BestPracticesandGotchas-Startingdownloadafterformsubmission%2528Wicket1.2%2529 WebResource export = new WebResource() { @Override public IResourceStream getResourceStream(

Re: [Wicket-user] Associating one java file with 2 different markups

2006-12-12 Thread Nino Wael
I see two options for you either use models to employ your different rules or build two entirely different components. I would go for using models since it's good practice... Somewhere I have a component that's basicly the palette component with an dropdown(either ajax based or standard postbac

Re: [Wicket-user] Download file/ trying to use webresource using wicket1.2 plain

2006-12-12 Thread Nino Wael
Would some one care to comment this? Regards Nino _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 12. december 2006 11:55 To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] Download file/ trying to use webresource using wicket1.2 plain

Re: [Wicket-user] Download file/ trying to use webresource usingwicket 1.2 plain

2006-12-13 Thread Nino Wael
trying to use webresource usingwicket 1.2 plain what is the generated url? if you set a breakpoint in getResourceStream() is it hit? -igor On 12/12/06, Nino Wael <[EMAIL PROTECTED]> wrote: Hi I've trying to use the this example: http://cwi

Re: [Wicket-user] Download file/ trying to use webresourceusingwicket 1.2 plain

2006-12-13 Thread Nino Wael
I've been wondering about this line in the example: new ResourceLink(this, "exportLink", export); I don't have that constructor in my wicket 1.2. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 13. december 2006 0

Re: [Wicket-user] Download file/ trying to usewebresourceusingwicket 1.2 plain

2006-12-13 Thread Nino Wael
Hmm I dont have that constructor in wicket 1.2.3 (got the build from sourceforge) either... So what do I do? Regards Nino _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 13. december 2006 09:51 To: wicket-user@lists.sourceforge.net Subject: Re

Re: [Wicket-user] Download file/ trying tousewebresourceusingwicket 1.2 plain

2006-12-13 Thread Nino Wael
Oh and another thing, the ressourcelink are bound to and html submit button, does that impact anything? Regards Nino _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 13. december 2006 10:35 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket

Re: [Wicket-user] Change label dynamicly

2006-12-14 Thread Nino Wael
Hmmm, should we change it so that trying to use an component that had no OutputMarkupId via AJAX would give an PleaseSetOutputMarKUPIDTRUE exception? I've stumpled over this also and a couple of other users has aswell.. Regards Nino _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTE

Re: [Wicket-user] Change label dynamicly

2006-12-14 Thread Nino Wael
:Re: [Wicket-user] Change label dynamicly see https://issues.apache.org/jira/browse/WICKET-168 -igor On 12/14/06, Roman Mandeleil <[EMAIL PROTECTED]> wrote: > > > > Ohh yeah it can improve the user expirience > > > Nino Wael wrote: > > > > Hmmm, shoul

Re: [Wicket-user] Constructing a list of links from java

2006-12-21 Thread Nino Wael
Use a Listview or repeater? Im using Listview to do something similar... Want an example? regards Nino -Original Message- From: [EMAIL PROTECTED] on behalf of Dustin Sallings Sent: Fri 22-12-2006 06:05 To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] Constructing a list of l

<    1   2   3   >