Re: URL mounting on Websphere causes Error 404

2009-03-12 Thread Philippe Marzouk
On Wed, Mar 11, 2009 at 07:04:17AM -0700, Goran Novak wrote: Hi, I developed my application using Jetty server and URL mounting worked fine. When I deploy it on Websphere it still works but on the end of HTML response to browser, string Error 404: SRVE0190E: File not found: /home is

Re: wicket - opensocial integration (with example code)

2009-03-12 Thread Martin Funk
I'd even ask for one step further. How about creating some quickstart with this and add it to wicketstuff. Not quite sure, maybe this script could be turned into a reusable HeaderContributor. mf Am 12.03.2009 um 03:23 schrieb Igor Vaynberg: Armin, maybe you should put this on our wiki page.

Re: DropDownChoice NO_SELECTION_VALUE static field

2009-03-12 Thread ulrik
Okay, I will see If I can figure out how :) I have never done that igor.vaynberg wrote: please open a jira issue. -igor On Wed, Mar 11, 2009 at 1:32 AM, ulrik ulrik.hagb...@gmail.com wrote: Hello! I have an issue with the DropDownChoice (wicket 1.3.4). Lets say I do this:

Re: DropDownChoice NO_SELECTION_VALUE static field

2009-03-12 Thread ulrik
https://issues.apache.org/jira/browse/WICKET-2161 // Ulrik ulrik wrote: Okay, I will see If I can figure out how :) I have never done that igor.vaynberg wrote: please open a jira issue. -igor On Wed, Mar 11, 2009 at 1:32 AM, ulrik ulrik.hagb...@gmail.com wrote: Hello! I

Re: DataView Model

2009-03-12 Thread Linda van der Pal
Quoted from Wicket in Action: When a component needs its model value but doesn't have a model assigned, it traverses its component hierarchy for a parent with a CompoundPropertyModel. The component then uses its component identifier as the property expression on the CompoundPropertyModel's

Craeating panels which are stored in map

2009-03-12 Thread newbie_to_wicket
Hi All, I am storing the keys and panels in hashmap. ex : map.put(itemname,nameofPanel); // nameofpanel is the Actual panel whenever i search an item nameofpanel will get it from map. after that the panel should be open in new window (Modal Window). so i dont want to use if conditions to

Re: Modal Window inside a wizardstep

2009-03-12 Thread jensiator
I stoped using panels as content in the modal window. Then the problem went away. Now I only use PageCreator when working with modalwindows. Theres is as well a problem with datetime pickers in modalwindows when using panels, so I guess pages is best in modals. Jens -- View this message in

Re: Extensible wicket application

2009-03-12 Thread Daniel Dominik Holúbek
Firstly, thanks for you reply :) I have already read that document regarding wicket and OSGi, but I think it is written for more experienced users at OSGi. As I wrote before, I even do not know how to build a simple web OSGi project (what should I deploy, how to install those bundles - I can't

Re: Escapeing of single quotes for AutoCompleteTextField

2009-03-12 Thread Thomas Gier
Igor, I upgraded to rc2 yesterday but this behaviour didn't change. I tried that but with no luck. The HTML-entity is replaced by the '-character somewhere down the line and entries containing an apostrophe can't be transfered from the autocompleted list to the text field. I'm sorry that I

Re: URL mounting on Websphere causes Error 404

2009-03-12 Thread Goran Novak
you are using wicket filter or servlet? -igor I'm using filter. filter-classorg.apache.wicket.protocol.http.WicketFilter/filter-class -- View this message in context: http://www.nabble.com/URL-mounting-on-Websphere-causes-Error-404-tp22455795p22471450.html Sent from the Wicket -

Re: URL mounting on Websphere causes Error 404

2009-03-12 Thread Goran Novak
Philippe Marzouk-2 wrote: If you are using WicketFilter you need to apply this: http://www-01.ibm.com/support/docview.wss?uid=swg24014758 Philippe I tryed to add the custom property and restarted the server but the problem still occures.

Re: Extensible wicket application

2009-03-12 Thread Ernesto Reinaldo Barreiro
Hi Daniel, Some comments inlined. On Thu, Mar 12, 2009 at 9:37 AM, Daniel Dominik Holúbek dankodo...@gmail.com wrote: Firstly, thanks for you reply :) I have already read that document regarding wicket and OSGi, but I think it is written for more experienced users at OSGi. As I wrote before,

Re: URL mounting on Websphere causes Error 404

2009-03-12 Thread Philippe Marzouk
On Thu, Mar 12, 2009 at 02:04:11AM -0700, Goran Novak wrote: Philippe Marzouk-2 wrote: If you are using WicketFilter you need to apply this: http://www-01.ibm.com/support/docview.wss?uid=swg24014758 I tryed to add the custom property and restarted the server but the

AW: AW: Tabbed Panel with bookmarkable links

2009-03-12 Thread Christian Helmbold
The development of the bookmarkable tabbed panel component is continued on http://wicketskunkworks.org. We decided to use a Google Code project for now but we plan to make the final component available via wicket stuff or maybe in the extensions tree of the core distribution (i don't know if

Re: AW: Tabbed Panel with bookmarkable links

2009-03-12 Thread Martijn Dashorst
Why start yet another project when the intention is to move it to stuff anyway? Martijn On Thu, Mar 12, 2009 at 12:22 PM, Christian Helmbold christian.helmb...@yahoo.de wrote: The development of the bookmarkable tabbed panel component is continued on http://wicketskunkworks.org. We decided

Re: Extensible wicket application

2009-03-12 Thread Richard Allen
Here is a good intro to OSGi: http://www.javaworld.com/javaworld/jw-03-2008/jw-03-osgi1.html Here is one framework for running Wicket in OSGi: http://www.ops4j.org/projects/pax/wicket/ Here is a project that integrates Guice, Wicket, Hibernate, and OSGi: http://code.google.com/p/modulefusion/

Why to set a model to a form?

2009-03-12 Thread Christian Helmbold
Hello, I wonder why I should set a model to a form, if every form field just holds a reference to the (same) model. Take a look at an example from Wicket in Action (page 91): public class MyForm extends Form { public MyForm(String id) { super(id); Customer customer = new Customer();

Re: Extensible wicket application

2009-03-12 Thread Ernesto Reinaldo Barreiro
Add this to your list: http://code.google.com/p/antilia/ Ernesto On Thu, Mar 12, 2009 at 1:06 PM, Richard Allen richard.l.al...@gmail.comwrote: Here is a good intro to OSGi: http://www.javaworld.com/javaworld/jw-03-2008/jw-03-osgi1.html Here is one framework for running Wicket in OSGi:

Re: Why to set a model to a form?

2009-03-12 Thread Jeremy Thomerson
A model decouples your form from where the object comes from. For instance, any time I create a form for adding an entity, I almost always use the same form for editing the entity. The form simply takes a IModelMyEntity and doesn't care if that is new ModelCustomer(new Customer()) or new

Re: wicketstuff-jamon

2009-03-12 Thread shetc
Hi Lars, Your Jamon implementation looks very good and I was able to easily integrate it with my Wicket project. Please tell me what the current status of this code is, and will it be okay to add it to a production application? Thanks, Steve -- View this message in context:

Re: Extensible wicket application

2009-03-12 Thread Daniel Dominik Holúbek
Hello :) I looked at the links listed below, seemed interesting, but the main problem (how to set up such a project) remains unsolved. So I think I really do need help :) It seems to me, though, that this whole thing is much too complicated. I need only some simple loading of multiple jars :) But

Re: AW: Tabbed Panel with bookmarkable links

2009-03-12 Thread Brill Pappin
I don't think we know that it will be moved... right now we only know that we two need it. - Brill On 12-Mar-09, at 7:28 AM, Martijn Dashorst wrote: Why start yet another project when the intention is to move it to stuff anyway? Martijn On Thu, Mar 12, 2009 at 12:22 PM, Christian

can we get this patch applied to the current snapshot?

2009-03-12 Thread Brill Pappin
https://issues.apache.org/jira/browse/WICKET-2137 - Brill - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Wicket Bench not being maintained?

2009-03-12 Thread Brill Pappin
I notice that Wicket Bench is not being maintained... it's plugin site seems to be down, its JIRA is down, is forum is down... the only think I can get to is the source repo. Does anyone know if its being maintained, or is it time to rescue the code and continue it some other place (lic

Re: Escapeing of single quotes for AutoCompleteTextField

2009-03-12 Thread Igor Vaynberg
open a jira issue, sounds like a bug -igor 2009/3/12 Thomas Gier thomas.g...@factscience.de: Igor, I upgraded to rc2 yesterday but this behaviour didn't change. I tried that but with no luck. The HTML-entity is replaced by the '-character somewhere down the line and entries containing an

Re: Possible to retrieve previous page from PageMap

2009-03-12 Thread rolandpeng
thanks john, but how to define variable lastPageIdVersionKey? It seems you missed the statement in the original post. thanks. Roland. John Patterson wrote: HashMapString,PageIdVersion lastPageMap = getSession().getMetaData(lastPageIdVersionKey); -- View

Re: Wicket Bench not being maintained?

2009-03-12 Thread Igor Vaynberg
the lic as far as i know is asl2 so feel free to do whatever you want with the code. -igor On Thu, Mar 12, 2009 at 8:13 AM, Brill Pappin br...@pappin.ca wrote: I notice that Wicket Bench is not being maintained... it's plugin site seems to be down, its JIRA is down, is forum is down... the

Re: Wicket-Security security check on component on a panel

2009-03-12 Thread Warren Bell
Doing the security check in onBeforeRender() in the Panel fixed it. I did not have a Page yet. Warren I am trying to do a security check on a component that is on a panel like this: if(SecureComponentHelper.isAuthenticated(myComponent)

Is it possible to have some sort of a controller in wicket

2009-03-12 Thread rag...@directi
Is it possible to have some sort of a controller in wicket? i have a situation where i want to map a url to a controller sort of thing and based on certain conditions i want to redirect the user to different pages. for example all request to application.com/ should to go a controller and

Re: Is it possible to have some sort of a controller in wicket

2009-03-12 Thread Igor Vaynberg
sure, its called a servlet :) in 1.5 we are building a more flexible url handling infrastructure that will let you do such things, in 1.4 its probably the easiest with a servlet or a filter that redirects to different bookmarkable urls. -igor On Thu, Mar 12, 2009 at 9:51 AM, rag...@directi

AW: Is it possible to have some sort of a controller in wicket

2009-03-12 Thread Christian Helmbold
You could use a different Servlet or ServletFilter as the central entry point for requests and redirect to bookmarkable Wicket-Pages. But to access a wicket session via HttpServlet interface from the outside is not exactly was is called elegant. 2) Also is it possible to map the tabs of the

Wicket training in Sweden?

2009-03-12 Thread Kent Larsson
Hi, I'm simply wondering if there exists any company providing Wicket training in Sweden? And if there is, what you know about them? Best regards, Kent - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Re: wicketstuff-jamon

2009-03-12 Thread shetc
Hi Lars, Your Jamon implementation looks very good and I was able to easily integrate it with my Wicket project. Please tell me what the current status of this code is, and will it be okay to add it to a production application? Thanks, Steve -- View this message in context:

Re: wicketstuff-jamon

2009-03-12 Thread shetc
Hi Lars, Your Jamon implementation looks very good and I was able to easily integrate it with my Wicket project. Please tell me what the current status of this code is, and will it be okay to add it to a production application? Thanks, Steve -- View this message in context:

Re: Shared string resources

2009-03-12 Thread Seven Corners
Thank you for giving such an explicit answer, Steve. The thing is, I do that all the time, and this is the answer for when you have an associated component. I am looking for how to do it with strings shared throughout the WebApplication; i.e., there is no component and the string is in the

Re: Shared string resources

2009-03-12 Thread Seven Corners
Thank you for giving such an explicit answer, Steve. The thing is, I do that all the time, and this is the answer for when you have an associated component. I am looking for how to do it with strings shared throughout the WebApplication; i.e., there is no component and the string is in the

Re: Wicket training in Sweden?

2009-03-12 Thread jWeekend
Kent, We occasionally organise such courses if there is enough interest. We've also had several Scandinavians pop over to London for jWeekend training (weekdays and weekends) and, coincidentally, our Wicket training course earlier this week had 2 Swedes and A Dane on it as well! Check our site

Re: Shared string resources

2009-03-12 Thread Jeremy Thomerson
In which app.xml file is it in? An XML properties file? Or in some Spring (etc) config file? String loading from Wicket's built in resources framework is quite robust. If you have a .properties file (or .xml properties file if you choose - certain languages require this format because of

Re: Shared string resources

2009-03-12 Thread Seven Corners
No, I'm not using Spring. It's an XML properties file with the same name as my application. Jeremy Thomerson-5 wrote: In which app.xml file is it in? An XML properties file? Or in some Spring (etc) config file? String loading from Wicket's built in resources framework is quite

Re: Shared string resources

2009-03-12 Thread Seven Corners
No, I'm not using Spring. It's an XML properties file with the same name as my application. Jeremy Thomerson-5 wrote: In which app.xml file is it in? An XML properties file? Or in some Spring (etc) config file? String loading from Wicket's built in resources framework is quite

Re: Shared string resources

2009-03-12 Thread Jeremy Thomerson
Then it should just work. Try using a ResourceModel. If that doesn't work, enable the logging for Wicket's resource loading package, restart your app, navigate to that page and watch the quite detailed logging output to see why it's not loading. It should work, though. -- Jeremy Thomerson

Re: Wicket training in Sweden?

2009-03-12 Thread Kent Larsson
Hi Cemal, Thank you for your reply. I think the course looks interesting. I'm giving the link to this mail thread to my manager. Best regards, Kent On Thu, Mar 12, 2009 at 6:49 PM, jWeekend jweekend_for...@cabouge.com wrote: Kent, We occasionally organise such courses if there is enough

Modal Window performance problem

2009-03-12 Thread dtoffe
Hi, I'm having performance problems when opening a modal window. This problem occurs on a lower end POS touchscreen box (Celeron 900, 512 RAM), where the modal window takes some 6-9 seconds to open. I've tried in other lower end machines with better processor and the delay is not so big.

building a wicket app with maven 1

2009-03-12 Thread Steve Swinsburg
Hi all, I have a need to backport my wicket app that builds perfectly in Maven2 to Maven1. I think I've adjusted all the pom.xml to project.xml correctly as all the classes and dependent jars looks like they are where they need to be, but on startup I get this:

Re: building a wicket app with maven 1

2009-03-12 Thread Jeremy Thomerson
It's very unlikely that someone will be able to help you without actually seeing the POM / XML file(s). Also, you might try the Maven mailing list. But at least supply the file - it will surely increase your chances of finding assistance here. -- Jeremy Thomerson http://www.wickettraining.com

Re: AutoCompletetextField misbehavior in IE

2009-03-12 Thread cbchhaya
Never mind, I was doing something daft but have now correctly replaced with the Mar 10 snapshot for 1.3.5 and the thing works fine. Thanks everyone for your help! -- View this message in context: http://www.nabble.com/AutoCompletetextField-misbehavior-in-IE-tp22459455p22483102.html Sent from

Re: building a wicket app with maven 1

2009-03-12 Thread Stephen Swinsburg
Ok I'll post when I get back into the office. I was mainly wondering if anyone knew of some major issue with Maven1 and Wicket/SLF4J - ie the versions in the Maven repositories etc. I note that the Maven1 repo now uses the Maven2 artifacts. I guess, in order to rule out Maven, I could just

Re: can we get this patch applied to the current snapshot?

2009-03-12 Thread Jeremy Thomerson
I'm reviewing it now. Assuming that it looks fine, and is line with what was proposed by the vote thread earlier, I will apply. The vote passed, so I don't see a reason not to. I'm not sure how many were binding / non-binding, but there were eight for, two against. -- Jeremy Thomerson

Re: building a wicket app with maven 1

2009-03-12 Thread Adriano dos Santos Fernandes
Steve Swinsburg escreveu: Hi all, I have a need to backport my wicket app that builds perfectly in Maven2 to Maven1. I think I've adjusted all the pom.xml to project.xml correctly as all the classes and dependent jars looks like they are where they need to be, but on startup I get this:

Re: can we get this patch applied to the current snapshot?

2009-03-12 Thread Jeremy Thomerson
Unless I'm seeing double - this patch has two problems: 1 - It is the opposite of what was voted on. The vote was to make IModelList? extends E into IModelListE. Your patch makes it IModel? extends List? extends E. 2 - The patch causes compile errors that were not fixed. I have unassigned

Re: building a wicket app with maven 1

2009-03-12 Thread Stephen Swinsburg
Thanks Adriano. I don't seem to need that for my Maven2 build though, is there a reason for that? I'll try that though. cheers, Steve On 12/03/2009, at 8:02 PM, Adriano dos Santos Fernandes wrote: Steve Swinsburg escreveu: Hi all, I have a need to backport my wicket app that builds

Re: can we get this patch applied to the current snapshot?

2009-03-12 Thread Igor Vaynberg
before applying an api-breaking patch to an rc release we should have a vote on the dev list. -igor On Thu, Mar 12, 2009 at 12:59 PM, Jeremy Thomerson jer...@wickettraining.com wrote: Unless I'm seeing double - this patch has two problems: 1 - It is the opposite of what was voted on.  The

Re: Modal Window performance problem

2009-03-12 Thread Matej Knopp
Hi, there is good reason why dissablefocuselement is called. Altough there certainly is room for performance improvements. Still, it's javascript, so you can replace disablefocuselements in modal window prototype with an empty function if you don't need it or it causes you problems. -Matej On

Re: Extensible wicket application

2009-03-12 Thread Ernesto Reinaldo Barreiro
Hi, I just created a very simple starting project for OSGi and wicket at: http://code.google.com/p/antilia/source/browse/#svn/trunk check out projects com.antilia.wstarter com.antilia.wstarter.demo Then you will have a equinox launcher called wicket-app (for eclipse 3.4). Use it to launch

use AjaxFormComponentUpdatingBehavior for ENTER-handling

2009-03-12 Thread alexander.elsholz
hi, here http://www.nabble.com/Form-Enter-Key-Problem-td14408121.html#a18785052 Juan Gabriel Arias described how to submit a field on enter. how can i combine this with AjaxFormComponentUpdatingBehavior, where getEventHandler() is final? thanks alex -- View this message in context:

get the index number of the RadioChoice selected and and not the label

2009-03-12 Thread novotny
Hi, I couldn't seem to find the answer to this question but it's probably pretty easy. I have a radio choice like so: RadioChoiceString rc = new RadioChoiceString(answer, new PropertyModelString(item, selected), item.getAnswers()); But basically it saves the answer text when what I really want

Re: get the index number of the RadioChoice selected and and not the label

2009-03-12 Thread Jeremy Thomerson
Then use the numbers as your model, override getConverter and return your own converter that converts the numbers to the displayable strings and vice versa. -- Jeremy Thomerson http://www.wickettraining.com On Thu, Mar 12, 2009 at 5:14 PM, novotny novo...@gridsphere.org wrote: Hi, I

Re: Security in a Spring Wicket layered application

2009-03-12 Thread Kent Larsson
Hi Kai, I'm setting up auth roles, it's going pretty well. Altough I've had some problems when I followed http://cwiki.apache.org/WICKET/spring-security-and-wicket-auth-roles.html to the letter, it might be a typo in there or else it was me doing something wrong. Is there a home page for the

Re: Security in a Spring Wicket layered application

2009-03-12 Thread Kent Larsson
By looking at the source code it looked very nice (and you're right about complex, but of course you are doing lots of important things so it's hard not to have something complex) to me. You seem to be very knowledgable. I didn't get it working in Eclipse though. I did a svn co the trunk path you

Re: Security in a Spring Wicket layered application

2009-03-12 Thread Kent Larsson
Hi Les, After looking at the JUG JSecurity Presentation of jSecurity I'm certainly interested in the project. For my next project I'll have to look into jSecurity. Keep up the good work! Best regards, Kent On Tue, Mar 10, 2009 at 6:53 PM, Les Hazlewood lhazlew...@apache.org wrote: Hi Kent,

Managing Pagemaps

2009-03-12 Thread subbu_tce
I understand that wicket maintains page maps by windows / tabs opened. If the user navigates to pages in multiple wicket applications in the same window, how are the page maps maintained? Will a new page map be created / maintained for every wicket application navigated in the same window? And

Versioning of Pages in PageMaps

2009-03-12 Thread subbu_tce
The Interface IPageSettings has the a method: setVersionPagesByDefault(). Does this method intend to provide the flexibility not to store page versions in page map? If it does give the support for not versioning pages, how does it impact the transparent support provided for back button?

Re: Possible to retrieve previous page from PageMap

2009-03-12 Thread rolandpeng
great! after delare a ineer class below: class PageIdVersion { public int id; public int version; public PageIdVersion last; } then the track function works. John Patterson wrote: // must declare hash map because meta

Re: Updating Main Page From Modal Using AJAX

2009-03-12 Thread dtoffe
Hi, I'm doing just what you explained, but the modal window content is a page instead of a panel. The Ajax debug window shows an error indicating that the component I'm trying to update was not found: ERROR: Component with id [[beanForm423]] a was not found while trying to perform

Re: Security in a Spring Wicket layered application

2009-03-12 Thread James Carman
Mr. Larsson, Thank you for your kind words and I'm sorry you had so much trouble getting the project to run. Those Sun licensing issues are annoying to all of us maven users. However, I would urge you to try running the project with either mvn jetty:run or using the Start class that's included

Large Scale Applications using Wicket

2009-03-12 Thread subbu_tce
Do we have any Clustering Solutions other than Terracotta that can integrate with Wicket to avoid serialization of pages to support development of applications in a large scale? Thanks, Subbu. -- View this message in context:

How to not cache markup - Wicket 1.4rc1

2009-03-12 Thread Karen Schaper
Hi All, I have a page where the markup is creating dynamically and I do not want the markup to be cached. I am implementing both IMarkupResourceStreamProvider, IMarkupCacheKeyProvider I'm not sure what I need to do in order for the markup not to be

Re: can we get this patch applied to the current snapshot?

2009-03-12 Thread Brill Pappin
This is an attempt to bring the dropdown and listview into sync. personally i don't care which way it goes as long as its simple and works, but I think it pretty important that it be done before the 1.4 release. The discussion was continued in the issue, so it's possible that people were

Re: can we get this patch applied to the current snapshot?

2009-03-12 Thread Jeremy Thomerson
Right - I didn't read the entire series of comments on the JIRA. I did read one that explained why removing the ? extends was the best solution, and several that agreed with it. I am basing my comments on the vote thread that was on the user list - a change like this will require a vote (as Igor

Re: can we get this patch applied to the current snapshot?

2009-03-12 Thread Brill Pappin
Sorry, didn't mean to come off accusing :) That was certainly the vote thread, and my personal preference as well... However in the issue I was assured that the new approach was better and compatible with ListT (I did not test it myself). I think this is certainly something the developers

Re: Large Scale Applications using Wicket

2009-03-12 Thread Igor Vaynberg
why does serialization of pages prevents large scale deployments? -igor On Thu, Mar 12, 2009 at 8:52 PM, subbu_tce subramanian.mur...@gmail.com wrote: Do we have any Clustering Solutions other than Terracotta that can integrate with Wicket to avoid serialization of pages to support

Re: can we get this patch applied to the current snapshot?

2009-03-12 Thread James Carman
To be clear, the only potential for breakage is where user code tries to modify the returned model object (of type List? extends T) without casting it. However, that's a rare usecase (in my opinion) and again it's easily overcome by a simple cast. On Thu, Mar 12, 2009 at 5:10 PM, Igor Vaynberg

Re: can we get this patch applied to the current snapshot?

2009-03-12 Thread Igor Vaynberg
palette needs to be able to do: getmodelobject().clear(); getmodelobject().add(item); where getmodelobject should return a collection. will that still work with this refactor? i dont see why components that do this need to cast anything to make it work. -igor On Thu, Mar 12, 2009 at 10:43 PM,

Re: Large Scale Applications using Wicket

2009-03-12 Thread Brill Pappin
I was going to ask that same thing :) Seems to me that its not such alien technology that it won't work the same as any other framework. - Brill On 13-Mar-09, at 1:15 AM, Igor Vaynberg wrote: why does serialization of pages prevents large scale deployments? -igor On Thu, Mar 12, 2009 at

Re: can we get this patch applied to the current snapshot?

2009-03-12 Thread James Carman
I didn't change any of the guts of Palette (I did change Recorder, a bit) in my patch. So, I guess the answer is yes, it will work. All of the unit tests pass. On Fri, Mar 13, 2009 at 1:50 AM, Igor Vaynberg igor.vaynb...@gmail.com wrote: palette needs to be able to do:

Re: can we get this patch applied to the current snapshot?

2009-03-12 Thread Brill Pappin
I'm really not sure of all the use-cases... all I know is that I spent some time trying to get the darn thing to compile using a fairly basic wicket pattern. If such a simple thing as feeding a list of items to a component that draws a list using them is going to give me that much trouble

Re: can we get this patch applied to the current snapshot?

2009-03-12 Thread Jeremy Thomerson
after removing the ? extends it will... // THIS WORKS: ListInteger list1 = new ArrayListInteger(); list1.add(new Integer(4)); list1.add(4); // THIS DOES NOT WORK: List? extends Integer list2 = new ArrayList? extends Integer(); list2.add(new Integer(4)); list2.add(4); -- Jeremy Thomerson