TabbedPanel no IModel?

2009-11-27 Thread Gatos
Hello, I need to use LoadableDetachableModel to retrieve list from the database when locale has been changed. I haven't found a costructor that took IModel as a parameter in the TabbedPanel component. How is it possible to reload the list without model? Thank you in advance

Re: TabbedPanel no IModel?

2009-11-27 Thread Johan Compagner
yes that component isnt nicely written, the tabs field should be a model (make a jira entry for this) but from the outside you can use: public final ListITab getTabs() { return tabs; } to add or remove tabs. That is the same list as you give the constructor So you could

Re: Wicket tester test coverage

2009-11-27 Thread Kent Tong
zedros wrote: I saw it, but we're using guice (when, it wouldn't be a show stopper in the end). Still, on the technical side, there's also this issue with selenium using mostly id, whereas wicket'ids change with each request... How do you solve this issue ? If the element is not in a

Wicket based open source projects

2009-11-27 Thread Gatos
Hello, Is there any wicket based Open Source projects? Thank you

Re: Wicket based open source projects

2009-11-27 Thread Martijn Dashorst
http://lmgtfy.com/?q=wicket+based+open+source+projects Results in: http://cwiki.apache.org/WICKET/#Index-WhoisusingWicket On Fri, Nov 27, 2009 at 2:53 PM, Gatos ega...@gmail.com wrote: Hello, Is there any wicket based Open Source projects? Thank you -- Become a Wicket expert, learn

Re: Wicket based open source projects

2009-11-27 Thread Matias Berrueta
yes, I'm working in one, but this still in the beginning http://code.google.com/p/base2dev/ the idea is a base project, (like appfuse ) but with ddd and of course wicket Matias Berrueta On Fri, Nov 27, 2009 at 10:53 AM, Gatos ega...@gmail.com wrote: Hello, Is there any wicket based

Re: Wicket based open source projects

2009-11-27 Thread Pierre Goupil
Sure! I know at least Hippo CMS (http://www.onehippo.com/en/home) JTrac ( http://www.jtrac.info/) Regards, Pierre On Fri, Nov 27, 2009 at 2:53 PM, Gatos ega...@gmail.com wrote: Hello, Is there any wicket based Open Source projects? Thank you -- Rien de grand ne s'est accompli

Re: Wicket based open source projects

2009-11-27 Thread Andrea Aime
Gatos ha scritto: Hello, Is there any wicket based Open Source projects? See GeoServer 2.0 at http://geoserver.org Cheers Andrea -- Andrea Aime OpenGeo - http://opengeo.org Expert service straight from the developers. -

Re: Wicket based open source projects

2009-11-27 Thread Peter Ertl
artifactory Am 27.11.2009 um 15:15 schrieb Andrea Aime: Gatos ha scritto: Hello, Is there any wicket based Open Source projects? See GeoServer 2.0 at http://geoserver.org Cheers Andrea -- Andrea Aime OpenGeo - http://opengeo.org Expert service straight from the developers.

Localize a string using custom locale

2009-11-27 Thread Gatos
Hello, For example I need to localize a string to defferent languages. How is it possible to localize using a custom locale? I found that a method in Localizer class, but it's deprecated: public String getString(final String key, final Component component, final IModel model, final Locale

Re: Localize a string using custom locale

2009-11-27 Thread Marat Radchenko
Just override getLocale in your component and use one of non-deprecated Localizer methods. 2009/11/27 Gatos ega...@gmail.com Hello, For example I need to localize a string to defferent languages. How is it possible to localize using a custom locale? I found that a method in Localizer

Re: WicketSessionFilter and several domains

2009-11-27 Thread Fernando Wermus
Bas, Thanks. I havent checked this behavior with other browsers. I will. What do you think is the best solution or approach to this problem? Fernando On Fri, Nov 27, 2009 at 7:36 AM, bgooren b...@iswd.nl wrote: Given your detailed explanation, I think the problem is clear: your browser

Re: Wicket based open source projects

2009-11-27 Thread Gatos
It might be a good idea to create a page in with open source projects, like Hippo CMS. What do you think? On Fri, Nov 27, 2009 at 4:36 PM, Peter Ertl pe...@gmx.org wrote: artifactory Am 27.11.2009 um 15:15 schrieb Andrea Aime: Gatos ha scritto: Hello, Is there any wicket based Open

Re: Can I Suppress Type Conversion Feedback Messages?

2009-11-27 Thread Keith Bennett
Igor - Thanks for the speedy responses. As I understand it, convertInput()'s main mission is to populate the convertedInput instance variable with the converted value, and overriding it as you suggest would be trivial. Just to be sure though, you don't foresee any change in Wicket

Re: Wicket based open source projects

2009-11-27 Thread Peter Ertl
+1 Am 27.11.2009 um 16:03 schrieb Gatos: It might be a good idea to create a page in with open source projects, like Hippo CMS. What do you think? On Fri, Nov 27, 2009 at 4:36 PM, Peter Ertl pe...@gmx.org wrote: artifactory Am 27.11.2009 um 15:15 schrieb Andrea Aime: Gatos ha

Re: Wicket based open source projects

2009-11-27 Thread Pierre Goupil
Which difference with the page Martijn gave? On Fri, Nov 27, 2009 at 4:08 PM, Peter Ertl pe...@gmx.org wrote: +1 Am 27.11.2009 um 16:03 schrieb Gatos: It might be a good idea to create a page in with open source projects, like Hippo CMS. What do you think? On Fri, Nov 27,

Re: WicketSessionFilter and several domains

2009-11-27 Thread bgooren
There are serveral options; The easiest is probably to append the sessionId to the URL you are accessing from the flash file; If that is not an option, host both the flash and the website on the same domain. Cross-domain issues are a hassle ;-) What's your reason for working with two domain

Re: Wicket based open source projects

2009-11-27 Thread Gatos
My problem is that I haven't found a good example of a wicket based project. Hippo CMS is too large project to learn Wicket. I thought that If there will be an Open Source Projects page, then it will be easier to start a project. On Fri, Nov 27, 2009 at 5:10 PM, Pierre Goupil

Re: Wicket based open source projects

2009-11-27 Thread Major Péter
Why don't you read this? http://wicket.apache.org/examples.html This will teach you the very basics of the wicket, anything else, what you would later need is just a Google query away from you. There are many Wicket example sites, see: http://wicket.apache.org/blogs.html

Re: Wicket based open source projects

2009-11-27 Thread Juri Prokofiev
What I'm looking for is not component examples, but architecture solutions. 2009/11/27 Major Péter majorpe...@sch.bme.hu: Why don't you read this? http://wicket.apache.org/examples.html This will teach you the very basics of the wicket, anything else, what you would later need is just a

RadioGroup, Radio and AjaxFormComponentUpdatingBehavior

2009-11-27 Thread Stefan Lindner
I try to add a AjaxFormComponentUpdatingBehavior to a RadioGroup. The RadioGroup contains some Radio-Components. Now, when I click onto any Radio, nothing happens. The RadioGroup AjaxFormComponentUpdatingBehavior does not see the click onto a Radio. But I can't add a

Re: Wicket based open source projects

2009-11-27 Thread Major Péter
I guess JTrac should do it, it's not that big project like the others. 2009-11-27 16:34 keltezéssel, Juri Prokofiev írta: What I'm looking for is not component examples, but architecture solutions. 2009/11/27 Major Péter majorpe...@sch.bme.hu: Why don't you read this?

Re: Wicket based open source projects

2009-11-27 Thread Pierre Goupil
+1: reading good Wicket-based source code wolud be a good spare-time activity. :-) I gave JTrac a try but it's 1.3 based. So for now, I don't know where to look: either you've got big apps, either you've got the scattered Wicket documentation. :-( On Fri, Nov 27, 2009 at 4:34 PM, Juri Prokofiev

Re: Wicket based open source projects

2009-11-27 Thread Pedro Santos
about phonebook on wicket stuff? On Fri, Nov 27, 2009 at 1:44 PM, Pierre Goupil goupilpie...@gmail.comwrote: +1: reading good Wicket-based source code wolud be a good spare-time activity. :-) I gave JTrac a try but it's 1.3 based. So for now, I don't know where to look: either you've got

Re: Adding a User Object to the Component Class

2009-11-27 Thread Keith Bennett
Igor Martijn - Thanks for all the information. I didn't know about the existence of metadata in the various classes; that's what I was looking for. I have a question about the metadata implementation. The javadoc indicates that the special MetaDataKey approach (rather than using a

Re: Wicket based open source projects

2009-11-27 Thread Matias Berrueta
https://www.ohloh.net/p?query=wicket the best way to learn architecture, is take a book and start yours project Matias Berrueta On Fri, Nov 27, 2009 at 12:46 PM, Pedro Santos pedros...@gmail.com wrote: about phonebook on wicket stuff? On Fri, Nov 27, 2009 at 1:44 PM, Pierre Goupil

Re: Localize a string using custom locale

2009-11-27 Thread Matias Berrueta
http://cwiki.apache.org/WICKET/everything-about-wicket-internationalization.html Matias Berrueta On Fri, Nov 27, 2009 at 11:59 AM, Marat Radchenko slonopotamusor...@gmail.com wrote: Just override getLocale in your component and use one of non-deprecated Localizer methods. 2009/11/27

Re: Wicket based open source projects

2009-11-27 Thread Pierre Goupil
IMHO Wicket-phonebook is a very good code reading. But it's done. Next! :-) On Fri, Nov 27, 2009 at 4:51 PM, Matias Berrueta matiasberru...@gmail.comwrote: https://www.ohloh.net/p?query=wicket the best way to learn architecture, is take a book and start yours project Matias Berrueta

RE: RadioGroup, Radio and AjaxFormComponentUpdatingBehavior

2009-11-27 Thread Stefan Lindner
I should have asked google first. AjaxFormChoiceComponentUpdatingBehavior does ist! Stefan - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Wicket based open source projects

2009-11-27 Thread Gatos
Phonebook is a good example. It's not a product or a public site, it's an open source site. Matias Berrueta, reinventing the wheel is really a good way to understand how does it work, but it's not guaranteed that your architecture is better than any other. I wish to see how to combine OSGi +

Re: Wicket based open source projects

2009-11-27 Thread Matias Berrueta
sorry, i don't say that must reinventing any wheel (sorry if my English is not good) I think that the best way , is take a book, (like domain driven design ) and tutorials, and start you project. If you take another open source project, you are accepting that this is a good architecture, Of

Re: Wicket based open source projects

2009-11-27 Thread Ernesto Reinaldo Barreiro
Maybe this will be of some help then http://code.google.com/p/antilia/ http://code.google.com/p/antilia/There is a small demo application you can try. http://code.google.com/p/antilia/wiki/GettingStarted Best, Ernesto On Fri, Nov 27, 2009 at 5:04 PM, Gatos ega...@gmail.com wrote: Phonebook

Portlet RequestCycle logRuntimeException

2009-11-27 Thread Goran Novak
I'm using wicket 1.4.1 for developing portlets on liferay 5.2.5 jboss 4.2.3. In my portlet on a page I have three DataView-es each with its own page navigation. I overrided PagingNavigation, PagingNavigator, PagingNavigationLink and PagingNavigationIncrementLink to be able to give paging

Re: Portlet RequestCycle logRuntimeException

2009-11-27 Thread Martin Makundi
Hi! We get something similar often on our production site: http://osdir.com/ml/users-wicket.apache.org/2009-11/msg00825.html I am not sure, but maybe more often when bots (googlebot,msnbot) visit our site. It might have something to do with state? I am curious if anybody finds out what's going

Re: WicketSessionFilter and several domains

2009-11-27 Thread Fernando Wermus
Bas, The site is regional. It is for LATAM. I will try to append the session id to the flash post. thanks On Fri, Nov 27, 2009 at 1:17 PM, bgooren b...@iswd.nl wrote: There are serveral options; The easiest is probably to append the sessionId to the URL you are accessing from the flash

Getting an Application Property Without a Component

2009-11-27 Thread Keith Bennett
I'd like to be able to access a property in my application properties file (e.g. MyApplication.properties) during the construction of a table column (implementation of IColumn). IColumn is not a Component, so I don't have a get() method for this. Since I can get an instance of the application

Re: Getting an Application Property Without a Component

2009-11-27 Thread Gabriel Bucher
for example have a look at the StringResourceModel implementation. (getLocalizer) Application.get().getResourceSettings().getLocalizer().getString(..) cheers gab Keith Bennett wrote: I'd like to be able to access a property in my application properties file (e.g. MyApplication.properties)

Re: Wicket based open source projects

2009-11-27 Thread Andrew Lombardi
We wrote a simple pastebin (http://mysticpaste.com) that showed putting a lot of the Wicket pieces together along with several blog articles ... and we even showed an upgrade from 1.3 - 1.4 (admittedly small code base so very easy to do) ... here's the article start:

Logout on Internet Explorer (IE) causes 404

2009-11-27 Thread pete swulius
Internet Explorer and Android browser both report a 404 on execution of my logout link: Link logoutLink = new Link( logoutLink ) { @Override public void onClick() { getsession().invalidate(); getRequestCycle().setRedirect( true ); setResponsePage( HomePage.class ); } }; Using