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

2006-12-13 Thread Nino Wael
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://cwiki.apache.org/WICKET/best-practices-and-gotchas.html#BestPracticesandGotchas-Startingdownloadafterformsubmission

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 09:18 To: wicket-user

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

[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

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

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] 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? _

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

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

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

2006-12-08 Thread Nino Wael
. Regards Nino -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Klochkov Sent: 8. december 2006 13:35 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] javascript handlers in html - quotes escaping Nino Wael wrote

[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] Palette add selected option

2006-12-04 Thread Nino Wael
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 in the wicket extensions

Re: [Wicket-user] Palette add selected option

2006-12-01 Thread Nino Wael
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... Below is only

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

[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

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

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

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:

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

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

2006-10-27 Thread Nino Wael
To: 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!!! BTW I could send our template

Re: [Wicket-user] mountBookmarkablePage

2006-10-27 Thread Nino Wael
ourceforge.net Subject: Re: [Wicket-user] mountBookmarkablePage use absolute paths for your images and you wont have this problem or mount with a querystringurlcodingstrategy so your url will be application/page?parama=valueparamb=value -Igor On 10/27/06, Nino Wael [EMAIL PROTECTED] w

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

2006-10-10 Thread Nino Wael
value=[[ button text ]]/ /form I also tested this in a separate quickstart and it works fine. I have 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

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]

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

Re: [Wicket-user] proof of concept app

2006-10-09 Thread Nino Wael
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 code through without running

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

2006-10-05 Thread Nino Wael
Hi Ive been using wicket for some 7 months or so now. As a consultant Ive 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. Its 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 Ive been using wicket for some 7 months or so now. As a consultant Ive 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. Its a lot simpler to create your own

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

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

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

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

Re: [Wicket-user] progress indicator

2006-09-28 Thread Nino Wael
be sure that the data hes sending is trustful in any way... Regards *Von:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *Im Auftrag von *Nino Wael *Gesendet:* Donnerstag, 28. September 2006 10:54

Re: [Wicket-user] progress indicator

2006-09-28 Thread Nino Wael
-- -- *Von:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *Im Auftrag von *Nino Wael *Gesendet:* Donnerstag, 28. September 2006 10:54 *An:* wicket-user@lists.sourceforge.net *Betreff:* [Wicket-user] progress indicator

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

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

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

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

2006-09-26 Thread Nino Wael
]; param[i] = ((IModel) params[1]).getObject(null); } return param; } From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 26. september 2006 13:43 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] wicket.util.lang.PropertyResolver / migth

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

2006-09-26 Thread Nino Wael
) 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-user@lists.sourceforge.net Subject: [Wicket-user] wicket.util.lang.PropertyResolver / migth be a littleofftopic Hi

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

2006-09-26 Thread Nino Wael
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 Object[] fillParameters() { Object param

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

2006-09-25 Thread Nino Wael
there is 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 mantainance. Idea

[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] form with wicket:child

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 wicket:child because

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

2006-09-21 Thread Nino Wael
. the 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. I've

[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. Ive created a small component that handles the stuff and placed the _javascript_ in that component as well

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

[Wicket-user] Session management

2006-08-28 Thread Nino Wael
Hi I was wondering how wicket maintains its 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 a

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 its session state. We are currently working on a crossbrowser application, where our application(wicket) lives

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
Janne On 28.8.2006, at 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

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
] 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 something

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
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 sessionid

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 time you hit the refresh

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

Re: [Wicket-user] Dropdown choices in wicket

2006-08-18 Thread Nino Wael
, 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 setter method for the supplied property. You could also

Re: [Wicket-user] Dropdown choices in wicket

2006-08-18 Thread Nino Wael
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, Nino Wael [EMAIL PROTECTED] wrote: Hi Sathya Yes you should

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]

[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
that is 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 Hibernate bean

[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? Ive 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] wicket.markup.html.form.checkbox/ajaxformbehaviour/set visible(false) -- BUG?

2006-07-21 Thread Nino Wael
is not visible (wherever they are) will not render anything. 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

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

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

2006-07-18 Thread Nino Wael
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: Strange then, it seems

Re: [Wicket-user] Model and setObject?

2006-07-18 Thread Nino Wael
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 to work like

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: [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: cb_HeleLandet.add(new AjaxEventBehavior

[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. Ive 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

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

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 This is what I got currently

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

2006-07-14 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 onchange modifier) When looking

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

2006-07-14 Thread Nino Wael
a wicket.ajax.markup.html.form.AjaxCheckBox ready for you as well -Igor On 7/13/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

[Wicket-user] Playing with models:)

2006-07-14 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

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 Im a little curious about this. I have

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

2006-07-14 Thread Nino Wael
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 Wael [EMAIL PROTECTED] wrote: I switched to the AjaxCheckBox, but my markup still says: input type

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 that my model are called on page construct(which makes

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

2006-07-14 Thread Nino Wael
, 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 LoadableDetachableModel do not support setobject

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

2006-07-14 Thread Nino Wael
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 On 7/14/06, Nino Wael [EMAIL PROTECTED] wrote: That is indeed is suitable, but in the example im doing, I use

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

2006-07-14 Thread Nino Wael
. 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 makes it hard to detect if I should

[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

[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())       

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

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 I’ve

[Wicket-user] Multipleforms good idea?

2006-06-23 Thread Nino Wael
Hi Ive 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

[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 winmail.dat___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user

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

2006-06-09 Thread Nino Wael
Hi Im a little curious since I recall doing this earlier.. Now it seems that PageLink onClick never gets called why is that? See snip below Html: INPUT type=submit wicket:id=openword value=Aring;ben i word / Java snip: myReport = new PageLink(openword, new IPageLink()

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

Re: [Wicket-user] PageLink wanting to check model before allowingpopup

2006-06-08 Thread Nino Wael
the link is rendered? If the latter is the case - and I would be surprised if it is not - you can just set/ unset popup settings, or tweak getPopupJavaScript to what you need. Eelco On 6/7/06, Nino Wael [EMAIL PROTECTED] wrote: Hi I have a popup button where I want to check misc stuff on my form

Re: [Wicket-user] Wicket

2006-06-08 Thread Nino Wael
Hi Gangadhar Im using this to attach a word document WebResponse response = (WebResponse) getResponse(); response.setContentType(application/msword); // response.setHeader(Content-disposition, attachment; filename= // + Example.doc;); // when set header is added

Re: [Wicket-user] PageLink wanting to check model beforeallowingpopup and info

2006-06-08 Thread Nino Wael
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 8. juni 2006 09:43 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] PageLink wanting to check model beforeallowingpopup Thanks, the latter is precisely what I needed(I set/unset the popup settings

Re: [Wicket-user] RadioGroup and Listview

2006-06-06 Thread Nino Wael
Of Nino Wael Sent: 3. juni 2006 18:24 To: wicket-user@lists.sourceforge.net Subject: SV: [Wicket-user] RadioGroup and Listview Ok here it is then:) http://sourceforge.net/tracker/index.php?func=detailaid=1500128group_id=119783atid=684975 Please notice that you have

Re: [Wicket-user] RadioGroup and Listview

2006-06-03 Thread Nino Wael
) does not allow zip attachements. Could you please file an issue (bug) with that attachement? Good for tracking anyway. Eelco On 6/2/06, Nino Wael [EMAIL PROTECTED] wrote: Ok here it is, the page

RE: [Wicket-user] RadioGroup and Listview

2006-06-02 Thread Nino Wael
Ok here it is, the page that holds the component that fails to load the model is the third page, and the component are called radiodropdown. I hope you can abstract from all the other stuff I had to put in there, were doing a lot of stuff with wicket/hibernate. So you need to click the

[Wicket-user] RadioGroup and Listview

2006-06-01 Thread Nino Wael
Hi Im having some trouble setting the selected radio on my RadioGroup. My Radios are held within a listview and im wanting to set the selected radio when constructing my form. However when setting my model after adding the listview to the radiogroup no radio is selected, so my

<    1   2   3   >