Re: Wicket meetup in San Francisco

2007-12-05 Thread Al Maw
Sorry, I've been pretty busy lately - I've not been checking the wicket-users list every day. If you want to get hold of me in a hurry, personal e-mail is a lot better. ;-) This is all rather last minute - it looks like we'd only be perhaps four people at best. I won't be very well prepared

Re: getApplication

2007-12-05 Thread Uwe Schäfer
Martin Funk schrieb: The Application you declare in the web.xml, so if you want your MyApplication you do it there and no need to fiddle with the getApplication() method. sorry, i did not make myself clear. i do declare my application in the web.xml. thats not what i am talking about. what i

Re: Remembering tabs browsed

2007-12-05 Thread Igor Vaynberg
you are probably using ajax to switch between tabs, in which case you will not get the history -igor On Dec 5, 2007 11:08 PM, Alexander Landsnes Keül <[EMAIL PROTECTED]> wrote: > > > Hi, > > > > I'm looking at the TabbedPanel example at > http://wicketstuff.org/wicket13/compref/?wicket:bookmark

Re: How to create the webpage(html) on the fly

2007-12-05 Thread Eelco Hillenius
> Oh ... you mean to say that once we have a html page with certain components > then it is not possible to add new components to that existing page at > runtime. You need to do that in another way. You need to replace those components, not the markup. Panels are convenient for that case. For a si

Re: How to dynamically generate HTML page?

2007-12-05 Thread Pen
Thanks Matthijs, I got a chance to look at Wouter Huijnink slides. This is what exactly I am looking. Can you please forward the AutoComponentPanel code. That would be great. ~Praveen Matthijs Wensveen-2 wrote: > > Hello Praveen, > > Wouter Huijnink presented something similar to what you

Re: Border support broken ?

2007-12-05 Thread rkanadam
Igor Vaynberg wrote: what does your markup look like? -igor On Dec 5, 2007 9:25 PM, rkanadam <[EMAIL PROTECTED]> wrote: Is perchance border support broken in 1.3 rc1 or am I using it in the wrong way... ? BoxBorder border = new BoxBorder ("borderId"); border.add (new Label ("label", "Hello

Re: Border support broken ?

2007-12-05 Thread rkanadam
Igor Vaynberg wrote: what does your markup look like? -igor On Dec 5, 2007 9:25 PM, rkanadam <[EMAIL PROTECTED]> wrote: Is perchance border support broken in 1.3 rc1 or am I using it in the wrong way... ? BoxBorder border = new BoxBorder ("borderId"); border.add (new Label ("label", "Hello

Re: Border support broken ?

2007-12-05 Thread Igor Vaynberg
what does your markup look like? -igor On Dec 5, 2007 9:25 PM, rkanadam <[EMAIL PROTECTED]> wrote: > Is perchance border support broken in 1.3 rc1 or am I using it in the > wrong way... ? > > BoxBorder border = new BoxBorder ("borderId"); > border.add (new Label ("label", "Hello World")); > > giv

Border support broken ?

2007-12-05 Thread rkanadam
Is perchance border support broken in 1.3 rc1 or am I using it in the wrong way... ? BoxBorder border = new BoxBorder ("borderId"); border.add (new Label ("label", "Hello World")); gives a "Did you forget to add it to the markup... ?" exception. Thanks, Raghu -

Re: Checkbox tree component

2007-12-05 Thread Doug Leeper
Could you post the stacktrace? -- View this message in context: http://www.nabble.com/Checkbox-tree-component-tf4699092.html#a14186249 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail:

Re: Checkbox tree component

2007-12-05 Thread Benjamin Keil
Thanks for the hint, but, yes the wicket jars are the latest ones: wicket-1.3.0-rc1.jar wicket-datetime-1.3.0-rc1.jar wicket-extensions-1.3.0-rc1.jar wicket-ioc-1.3.0-rc1.jar wicket-spring-1.3.0-rc1.jar wicket-spring-annot-1.3.0-rc1.jar And it's the same set of jars under Jetty. So, I'm still r

Re: cannot render a menubar using menu2 package

2007-12-05 Thread Doug Leeper
James, I guess menu2 currently requires a strip of the wicket tags. I have my application strip the tags so I never noticed. Any example I should look at to fix this? - Doug -- View this message in context: http://www.nabble.com/wicket-success-stories-tf4877640.html#a14185165 Sent from the W

Re: Checkbox tree component

2007-12-05 Thread Doug Leeper
That doesn't make sense. Not sure what the problem could be. Are you sure you have Wicket 1.3 in the Tomcat instance? -- View this message in context: http://www.nabble.com/Checkbox-tree-component-tf4699092.html#a14185067 Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Checkbox tree component

2007-12-05 Thread Benjamin Keil
Hello All! This CheckBox tree is very cool. But I'm having some strange interactions with the web server: when I run under Jetty everything goes smoothly, but when I deploy to tomcat, I get a bunch of unrendered component exceptions for the component with id "checkbox" and whose class is some

Re: How to create the webpage(html) on the fly

2007-12-05 Thread venky221
Oh ... you mean to say that once we have a html page with certain components then it is not possible to add new components to that existing page at runtime. ~Venkat Eelco Hillenius wrote: > > That's an entirely wrong way of doing things. You should view your > templates like you would view Jav

London Wicket User Group

2007-12-05 Thread James Perry
I've just come back from the LWUG and would like to thank Cemal for arranging this meeting. It's good to put faces to some of the names on this list! :-) I enjoyed myself and look forward to the next one. Cheers, James. - To unsu

Re: getApplication

2007-12-05 Thread Eelco Hillenius
> why is it, that i can (and should) override getSession() to get 'my' > implementation, > > @Override > public MySession getSession() > { > return (MySession) super.getSession(); > } Actually, if you use Java 5, I think this pattern is nicer: public class MySession e

Re: Thx everybody that attended the user group meeting in The Netherlands

2007-12-05 Thread Eelco Hillenius
On Dec 5, 2007 12:57 PM, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > I've uploaded my two presentations: > >- Apache Wicket: Web Applications With Just > Java >- > wicket-live-on-stage

Re: getApplication

2007-12-05 Thread Martin Funk
Uwe Schäfer schrieb: Hi why is it, that i can (and should) override getSession() to get 'my' implementation, @Override public MySession getSession() { return (MySession) super.getSession(); } whereas getApplication is unfortunately final. @Override public fin

Re: Thx everybody that attended the user group meeting in The Netherlands

2007-12-05 Thread Martijn Dashorst
I've uploaded my two presentations: - Apache Wicket: Web Applications With Just Java - wicket-live-on-stage Enjoy! (btw you can upload the PDF as a p

Re: How to dynamically generate HTML page?

2007-12-05 Thread Pen
thanks Matthijs, Your understanding of the problem is correct, we are trying to generate a HTML pages at runtime. But the solution proposed is looks quiet complicated. I guess there is no easy way in Wicket to achieve this. so still we are not able to get the right solution yet. I was thinking

Re: Template Page and the URLs

2007-12-05 Thread NickCanada
ok my own thread is becoming a monologue: So i solved an issue for me with replacing components in a bookmarkable page. Upon a panel replacement the URL would be replaced with this type of non-bookmarkable wicket url: ?wicket:interface=:2::: . I did an ajax replacement instead so a new whole page

Re: wicket applet issue

2007-12-05 Thread JulianS
zandile wrote: > > I have been trying all sorts of work arounds to include an applet into > wicket: > I keep getting an classnotfoundexception in the java console for the > applet. I am running wicket 1.2.6 and I am not sure what exactly is wrong > with this, My applet runs fine when I run it in

getApplication

2007-12-05 Thread Uwe Schäfer
Hi why is it, that i can (and should) override getSession() to get 'my' implementation, @Override public MySession getSession() { return (MySession) super.getSession(); } whereas getApplication is unfortunately final. @Override public final Application getAppl

Re: Using the tags

2007-12-05 Thread Igor Vaynberg
see (Simple)FormComponentLabel -igor On Dec 5, 2007 10:57 AM, Francisco Diaz Trepat - gmail <[EMAIL PROTECTED]> wrote: > Hi I wish to add tag to my form and put some styling on it. > > Is there a wicket side version of it? > > What would be the best way of using it? > > For instance, tag has t

Using the tags

2007-12-05 Thread Francisco Diaz Trepat - gmail
Hi I wish to add tag to my form and put some styling on it. Is there a wicket side version of it? What would be the best way of using it? For instance, tag has the for attribute, which should hold the id of the form component that it is asociated with. How can I render it from wicket? Can I u

Re: OutOfMemoryError: Java heap space

2007-12-05 Thread Igor Vaynberg
> The ListView implementation had > two Label objects that contained two PropertyModels. I didn't know that > PropertyModel stores the object, i thought that it only only stores the > value of the field. This object is very heavy, and the pages was storing two > heavy objects for each ListItem ins

Re: annoying alert message while closing modal window with wizard

2007-12-05 Thread narup
Ya Matej's advice is good, actually i wanted to stick with wicket provided wizard. But any way i got my own custom wizard with ajax button bar working. thanks everyone for the reply. wicket rocks!! wicket user wrote: > > If you need to do the business operation I'm pretty sure you have to > fol

Re: OutOfMemoryError: Java heap space

2007-12-05 Thread Sergio García
igor.vaynberg wrote: > > erm, if all your OfferListModel do is have something in load() then > why do you subclass it instead of the LDM directly? > > -igor > > First you have to think that i can't touch the service. The abstract LoadableDetachableModel retrieves a instance of a TO contain

Re: OutOfMemoryError: Java heap space

2007-12-05 Thread Igor Vaynberg
erm, if all your OfferListModel do is have something in load() then why do you subclass it instead of the LDM directly? -igor On Dec 5, 2007 9:57 AM, Sergio García <[EMAIL PROTECTED]> wrote: > > > igor.vaynberg wrote: > > > > looks like your page has a reference to some huge object which causes

Re: OutOfMemoryError: Java heap space

2007-12-05 Thread Sergio García
igor.vaynberg wrote: > > looks like your page has a reference to some huge object which causes > a problem when the page is serialzed - so maybe that loadable > detachable model of yours is not very detachable... > > > -igor > I don't know what i'm doing wrong. I have a abstract detachable

Re: Returning plain text / JSON data

2007-12-05 Thread Scott Sauyet
Thank you very much. I figured there must be an easy way... -- Scott Igor Vaynberg wrote: onclick() { getrequestcycle().setrequesttarget(new stringrequesttarget("boo!")); } yeah, that easy :) -igor On Dec 5, 2007 6:44 AM, Scott Sauyet <[EMAIL PROTECTED]> wrote: Every now and then w

Re: wicket applet issue

2007-12-05 Thread zandile
This is the error I am getting on my java console: It cannot find my applet class load: class com.test.AppletForm not found. java.lang.ClassNotFoundException: com.test.AppletForm at sun.applet.AppletClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown S

Re: IComponentResolver question

2007-12-05 Thread Igor Vaynberg
icomponentresolver does exactly what its javadoc says - match markup tags to components. if you want you can create those components on the fly - but remember that this happens at render time so it might have some side effects for you. you dont need to rewrite your panel as a component resolver an

Re: OutOfMemoryError: Java heap space

2007-12-05 Thread Igor Vaynberg
looks like your page has a reference to some huge object which causes a problem when the page is serialzed - so maybe that loadable detachable model of yours is not very detachable... -igor On Dec 5, 2007 8:00 AM, Sergio García <[EMAIL PROTECTED]> wrote: > > Hi, > > I have a memory problem on m

Re: Returning plain text / JSON data

2007-12-05 Thread Igor Vaynberg
onclick() { getrequestcycle().setrequesttarget(new stringrequesttarget("boo!")); } yeah, that easy :) -igor On Dec 5, 2007 6:44 AM, Scott Sauyet <[EMAIL PROTECTED]> wrote: > Every now and then with Wicket, I find my self wanting to send plain > text or Javascript/JSON data to the browser.

Re: Using ajax to update a panel

2007-12-05 Thread Igor Vaynberg
look at the markup that is transferred via ajax for your new panel in the wicket ajax debug console. if the markup contains proper images but doesnt show up look for javascript errors, if the markup contains stale images then your models are simply not right yet - try to get your page working witho

Re: Problem with 1.3 Validation and Conversion order

2007-12-05 Thread Igor Vaynberg
On Dec 5, 2007 8:49 AM, JulianS <[EMAIL PROTECTED]> wrote: > I've > updated the Converters section of the migration guide. thanks -igor > > Julian > -- > View this message in context: > http://www.nabble.com/Problem-with-1.3-Validation-and-Conversion-order-tf4947088.html#a14175344 > > Sent from

Re: two dropdownchoice inputs combined as a fragment/panel/component ??

2007-12-05 Thread Igor Vaynberg
a couple of notes first what you are doing in convertintput() looks to me like it should be working you dont need phonemodel/phonemake fields as you dont use them - at least they are never written to. isntead of using getinput() inside the model you should try using getmodelobject() i would set

Re: Problem with 1.3 Validation and Conversion order

2007-12-05 Thread JulianS
igor.vaynberg wrote: > > why do you think the validator should be called first? if you attach a > Number.maximum(5) validator to a textfield do you think the validator > should work on input string("5") or should string("5") firsrt be > converted to int(5) and validator should work with that? >

Re: ListMultipleChoice and submitting added list items

2007-12-05 Thread Jason Anderson
you might use the built in Palette component rather than reimplementing it... http://wicketstuff.org/wicket13/compref/ (click the palette link) On Dec 5, 2007 4:29 AM, Kjetil Paulsen <[EMAIL PROTECTED]> wrote: > I'm currently rewriting an application from Stripes to Wicket in a > project here a

Re: AutoCompleteTextField problem

2007-12-05 Thread wicket user
I am not sure why it doesn't work when we try to repaint the form itself. Some one else with more knowledge of the wicket internals will be able to help us with the answer of that question. Regarding refreshing the form - if i were you ( if required ) i would add all the form components in a web m

Re: wicket applet issue

2007-12-05 Thread jweekend
Make the simplest possible applet and simplest possible static web-page with the applet-tag (ie _not_ a Wicket page) and make sure your browser will handle that properly. The exception you describe can be caused by mismatched java versions between your compiled code (applet) and the browser's java

Re: wicket applet issue

2007-12-05 Thread Jonas
It's not wicket that is looking for classes, it's your browser's java plugin. If you use the archive attribute like you do, the jars are searched in the same 'directory' as the page is where the applet tag is defined. e.g. www.example.com/foo/bar/appletpage.html contains your code, your java plugin

OutOfMemoryError: Java heap space

2007-12-05 Thread Sergio García
Hi, I have a memory problem on my wicket app. It's being developed, so there is no reason for a memory problem. The class that throws this exception has a intensive use of LoadableDetachableModel. 2007-12-05 16:56:12,032 ERROR [[WicketApplication]] (StandardWrapperValve.java:253) - Servlet.serv

RE: AutoCompleteTextField problem

2007-12-05 Thread Holda, Dariusz
Yes it did work. And if I want to refresh the form? Do I have to enclose all the form components in the web markup? Dariusz -Original Message- From: Dipu Seminlal [mailto:[EMAIL PROTECTED] Sent: 05 December 2007 14:28 To: users@wicket.apache.org Subject: Re: AutoCompleteTextField probl

wicket applet issue

2007-12-05 Thread zandile
I have been trying all sorts of work arounds to include an applet into wicket: I keep getting an classnotfoundexception in the java console for the applet. I am running wicket 1.2.6 and I am not sure what exactly is wrong with this, My applet runs fine when I run it in eclipse using the applet vie

WicketTester failure (1.2.6)

2007-12-05 Thread Paolo Di Tommaso
Guys, I'm getting a WicketRuntimeExceptionin this simple unit test: class SimpleTest { @Test public void createPage() { WicketTester tester = new WicketTester(); PageParameters params = new PageParameters("office_code=FAAFG"); Page page = new PremisesListPage(par

IComponentResolver question

2007-12-05 Thread Matthijs Wensveen
Hello, I have developed a panel named AutoComponentPanel that automatically adds wicket components based on (dynamic) markup. Looking at IComponentResolver I noticed some similarities. Can someone explain this class and its uses to me? Is it something that I should want to use for AutoComponentP

RE: cannot render a menubar using menu2 package

2007-12-05 Thread rik rik
Hi Doug, I've created a simple menu with menu2 and on Internet Explorer it works perfectly. But I have a problem with Firefox, because the submenus are not displayed, and the little symbol (the down pointing arrow right side the menu) is not displayed, too. The strange thing is that the MenuBar2

Re: [RFE] AjaxLazyLoadPanel

2007-12-05 Thread Johan Compagner
done On Dec 5, 2007 9:55 AM, Alex Objelean <[EMAIL PROTECTED]> wrote: > > I've noticed that AjaxLazyLoadPanel has only one constructor: > public AjaxLazyLoadPanel(String id) > > I think that it would be useful to add a constructor with IModel to this > component: > public AjaxLazyLoadPanel(String

Returning plain text / JSON data

2007-12-05 Thread Scott Sauyet
Every now and then with Wicket, I find my self wanting to send plain text or Javascript/JSON data to the browser. I know how to use, for instance, the StringHeaderContributer. What I would like is for certain calls to simply return no HTML markup at all, just plain text. For most of these ne

Re: Problems deploying Wicket application with Tomcat

2007-12-05 Thread John Krasnay
PermGen is a region of memory maintained by the JVM for things like class definitions. The default size is notoriously small for web apps, and you can easily run out, especially if you re-deploy the application multiple times without restarting the app server. Try re-starting Tomcat rather than ju

Re: AutoCompleteTextField problem

2007-12-05 Thread Dipu Seminlal
can you please try enclosing the dropdown in a webmarkupcontainer and repaint the container instead of repainting the whole form. That will work. regards dipu On Dec 5, 2007 2:23 PM, Dipu Seminlal <[EMAIL PROTECTED]> wrote: > agreed, onBlur doesn't seem to work, in my project had added onChange

Re: AutoCompleteTextField problem

2007-12-05 Thread Dipu Seminlal
agreed, onBlur doesn't seem to work, in my project had added onChange and OnBlur to be on the safer side, but now noticed that onBlur is not getting fired On Dec 5, 2007 12:20 PM, Holda, Dariusz <[EMAIL PROTECTED]> wrote: > > Onblur is not the thing I want but I've tried it and it doesn't work.

Re: Using ajax to update a panel

2007-12-05 Thread wicket user
is it not possible to post the whole page where you insert the ImagePreviewPanel ? I don't need the HTML just the java side On 05/12/2007, Andrew Moore <[EMAIL PROTECTED]> wrote: > > > The ajax stuff is firing (as I can see in the ajax debug window) but the > panel does not get updated. > > I know

Re: 302 vs. 301 Redirect

2007-12-05 Thread Gwyn Evans
I think the one thread was "Consistent homepage URL" from 2005Q2 - I think the gist was that in the scenario there, it wasn't desirable having the redirected URL becoming the one that the search engines would always go to. /Gwyn On 04/12/2007, Johan Compagner <[EMAIL PROTECTED]> wrote: > Long lon

Re: How to secure passwords?

2007-12-05 Thread Gwyn Evans
Following on with the MD5 + salt advice, the Jasypt project (http://www.jasypt.org/) looks to be the way I'd go if I needed to do this. See http://www.jasypt.org/howtoencryptuserpasswords.html for a recap of what's been discussed here. /Gwyn On 04/12/2007, John Krasnay <[EMAIL PROTECTED]> wrote:

Re: Using ajax to update a panel

2007-12-05 Thread Andrew Moore
The ajax stuff is firing (as I can see in the ajax debug window) but the panel does not get updated. I know I'm getting the id from the drop down and the ajax bit itself is fine as I can get the value of the drop down and append it to a test label on the form that's used to store the dropdown det

Re: Problems deploying Wicket application with Tomcat

2007-12-05 Thread wicket user
Apart from the obvious that you are out of memory, no not really. This happens a lot to me in development mode, have you switched to deployment mode? On 05/12/2007, James Perry <[EMAIL PROTECTED]> wrote: > > Checking my Tomcat's server log (catalina.out), it appears the issue is: > ERROR - [wick

Re: Problems deploying Wicket application with Tomcat

2007-12-05 Thread James Perry
Checking my Tomcat's server log (catalina.out), it appears the issue is: ERROR - [wicketcart] - Servlet.service() for servlet wicketcart th rew exception java.lang.OutOfMemoryError: PermGen space at sun.misc.Unsafe.defineClass(Native Method) at sun.reflect.ClassDefiner

Re: Problems deploying Wicket application with Tomcat

2007-12-05 Thread James Perry
Bare with me. I am just redeploying it. On Dec 5, 2007 12:56 PM, wicket user <[EMAIL PROTECTED]> wrote: > I'm getting a 503, > HTTP Status 503 - This application is not currently available > > On 05/12/2007, James Perry <[EMAIL PROTECTED]> wrote: > > > > Dear all, > > > > I am deploying my first w

Re: Problems deploying Wicket application with Tomcat

2007-12-05 Thread wicket user
I'm getting a 503, HTTP Status 503 - This application is not currently available On 05/12/2007, James Perry <[EMAIL PROTECTED]> wrote: > > Dear all, > > I am deploying my first wicket based web app selling British > traditional sweets at http://www.thebritishsweetshop.co.uk/ > > There seems to be a

Problems deploying Wicket application with Tomcat

2007-12-05 Thread James Perry
Dear all, I am deploying my first wicket based web app selling British traditional sweets at http://www.thebritishsweetshop.co.uk/ There seems to be a problem as all the links lead to a 'Page Expired' error page. Any ideas? Cheers, J. ---

ListMultipleChoice and submitting added list items

2007-12-05 Thread Kjetil Paulsen
I'm currently rewriting an application from Stripes to Wicket in a project here and have the following (simplified) problem. I've got two list components that are filled from a model, and then I use javascript to transfer items between them, but when the lists are submitted no new values are added

Re: Using ajax to update a panel

2007-12-05 Thread wicket user
Hi Andrew, So what's actually happening? Anything? Exceptions or does the image just stay the same? On 05/12/2007, Andrew Moore <[EMAIL PROTECTED]> wrote: > > > Hi, > I've got a page, which includes a drop down choice box, and a panel (with > a > list of images). > > The drop down box holds an

RE: AutoCompleteTextField problem

2007-12-05 Thread Holda, Dariusz
Onblur is not the thing I want but I've tried it and it doesn't work. -Original Message- From: Dipu Seminlal [mailto:[EMAIL PROTECTED] Sent: 05 December 2007 12:10 To: users@wicket.apache.org Subject: Re: AutoCompleteTextField problem can you try changing the event from onchange to onb

Using ajax to update a panel

2007-12-05 Thread Andrew Moore
Hi, I've got a page, which includes a drop down choice box, and a panel (with a list of images). The drop down box holds an id (which ties back to a list of images), what I'm wanting to be able to do is that if the user changes the drop down choice, the panel refreshes via ajax with the new imag

Re: AutoCompleteTextField problem

2007-12-05 Thread Dipu Seminlal
can you try changing the event from onchange to onblur On Dec 5, 2007 12:08 PM, dariusz.holda <[EMAIL PROTECTED]> wrote: > > Hi, > I have AutoCompleteTextField with > AjaxFormComponentUpdatingBehavior("onchange"). When the value is chosen > from > the auto complete it populates the model object o

AutoCompleteTextField problem

2007-12-05 Thread dariusz.holda
Hi, I have AutoCompleteTextField with AjaxFormComponentUpdatingBehavior("onchange"). When the value is chosen from the auto complete it populates the model object of a drop down. Both of the components are in a form. The problem is it is working only the first time. Then IE reports Error on Page:

Re: Thx everybody that attended the user group meeting in The Netherlands

2007-12-05 Thread Wouter Huijnink
Where are the pictures, slides and videos? :-) slideshare won't convert my presentation - for now it's available as PDF: http://www.func.nl/download/func_wicket_dynamic_components.pdf -- Wouter Huijnink Func. Internet Integration W http://www.func.nl T +31 20 423 F +31 20 4223500 -

Re: unable to lazily register a javascript file

2007-12-05 Thread wicket user
upgrading 1.3 RC1 fixed this by the way On 20/11/2007, wicket user <[EMAIL PROTECTED]> wrote: > > Hi, > > It's been a while since I've had to come and check the mailing list out > (always a good sign of a framework). Anyway 300 unit tests down and the > first version is live, that's the good part

Re: two dropdownchoice inputs combined as a fragment/panel/component ??

2007-12-05 Thread wicket user
Thanks Igor, that's certainly pushed me along in the right direction my only problem is that I can't seem to get the value from the selected dropdown, there are two drop downs that will always be used but I only care about the 2nd value(the phonemodel), the first, phone make, is just a means of ge

RE: Wrapping up the Amsterdam Wicket Meetup

2007-12-05 Thread Arje Cahn
Hi Cemal, Thanks! I really like your suggestion to merge things into a European Wicket event. My background is from the Cocoon GetTogethers, and those had a European audience too (with just a couple of Americans added to it). I believe local events are good, but we need the diversity that a cro

[RFE] AjaxLazyLoadPanel

2007-12-05 Thread Alex Objelean
I've noticed that AjaxLazyLoadPanel has only one constructor: public AjaxLazyLoadPanel(String id) I think that it would be useful to add a constructor with IModel to this component: public AjaxLazyLoadPanel(String id, IModel model) What do you think? Regards, Alex -- View this message in c