Re: Problems with Wicket 7.5.0 and Wicket Bootstrap 0.10.10 using a custom NotificationPanel

2016-10-27 Thread Joachim Rohde
o...@apache.org> > wrote: > >> The release script is running... >> >> Martin Grigorov >> Wicket Training and Consulting >> https://twitter.com/mtgrigorov >> >> On Thu, Oct 27, 2016 at 3:03 PM, Francesco Chicchiriccò < >> ilgro...@apache.org>

Re: Problems with Wicket 7.5.0 and Wicket Bootstrap 0.10.10 using a custom NotificationPanel

2016-10-27 Thread Joachim Rohde
cket Training and Consulting > https://twitter.com/mtgrigorov > > On Thu, Oct 27, 2016 at 1:10 PM, Joachim Rohde <j...@solvit.de> wrote: > >> We are having a custom FeedbackPanel which extends from NotificationPanel. >> After upgrading from Wicket 7.4.0 to 7.5.0 an >> u

Re: How to correctly implement a custom error page

2016-09-07 Thread Joachim Rohde
> Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Wed, Sep 7, 2016 at 11:36 AM, Joachim Rohde <j...@solvit.de> wrote: > >> Hi, >> >> I need to enrich the ExceptionErrorPage with some additional information

How to correctly implement a custom error page

2016-09-07 Thread Joachim Rohde
Hi, I need to enrich the ExceptionErrorPage with some additional information. Currently I have a working solution but I'm not sure, if this is the correct way. My first try was (in my Application-class): /** * Define our own exception mapper. */ @Override public IProvider

Re: Chrome extension and Eclipse plugin for wicket-source helper are updated!

2016-08-25 Thread Joachim Rohde
For the NetBeans users who couldn't use this great tool till now: I just uploaded a NetBeans plugin under https://github.com/JoachimRohde/NBWicketSourcePlugin Joachim On 08/22/2016 03:30 AM, Jenny Brown wrote: > About 5 years ago, I created wicket-source, a set of extensions that let > you

Re: Evicting the page store to force Wicket to create a new instance of a page after using the back-button

2016-04-18 Thread Joachim Rohde
t ask me why I was thinking so complicated in the beginning. Have a nice weekend. On 04/14/2016 03:35 PM, Joachim Rohde wrote: > Hello, > > short version of my question: how do I evict the page store to force Wicket > to create a new instance after using the > back-button? >

Re: Evicting the page store to force Wicket to create a new instance of a page after using the back-button

2016-04-15 Thread Joachim Rohde
04/14/2016 03:35 PM, Joachim Rohde wrote: > Hello, > > short version of my question: how do I evict the page store to force Wicket > to create a new instance after using the > back-button? > > Longer version: > > A user is redirected after login to my main page

Evicting the page store to force Wicket to create a new instance of a page after using the back-button

2016-04-14 Thread Joachim Rohde
Hello, short version of my question: how do I evict the page store to force Wicket to create a new instance after using the back-button? Longer version: A user is redirected after login to my main page. On my main page I have several links in onInitialize() which overwrites isVisible checking

Re: Gmap3 custom Icon

2013-07-17 Thread Joachim Rohde
Hi Tom, you need to pass a valid URL (as a string) to GIcon, e.g.: Icon hotelIcon = new GIcon(http://www.yourdomain/img/Hotel.png;); In case you are using Maven and Spring I would suggest that you inject the base-URL depending on the Maven-profile into a variable so that you don't have to

[Wicketstuff] Google Maps 3 component

2012-08-09 Thread Joachim Rohde
of such a component or just want to play a bit with it, I would appreciate to hear any feedback. Joachim Rohde - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

HTML files not reloading in Netbeans on save - quick hack solution

2011-02-02 Thread Joachim Rohde
Hi, for those of you who are developing Wicket applications with Netbeans will have encountered the annoyance that since Netbeans version 6.8 changes of HTML-files are not immediately visible after saving. I wrote a short blog entry regarding this topic which might be of interest:

Re: Form values are not submitted if form-component is initially not visible

2010-09-17 Thread Joachim Rohde
Am 17.09.2010 07:21, schrieb Jeremy Thomerson: On Thu, Sep 16, 2010 at 5:17 PM, Joachim Rohdemailingl...@joachimrohde.com wrote: I have a listview which is displaying in each row some data within a form, among other things a date (as a label which is initially shown) and a Panel

Re: Form values are not submitted if form-component is initially not visible

2010-09-17 Thread Joachim Rohde
Am 17.09.2010 21:16, schrieb Jeremy Thomerson: Thanks for the answer. But if I'm adding my form to the target the visibility of the components does not change anymore. Anything else I'm overseeing? It should. Did you look in the wicket ajax log window? Did you add

Form values are not submitted if form-component is initially not visible

2010-09-16 Thread Joachim Rohde
I have a listview which is displaying in each row some data within a form, among other things a date (as a label which is initially shown) and a Panel containing a (wiquery-)datepicker (which is initially hiding). Each row also has an edit-link (AjaxLink) and a save-link (SubmitLink). After

Re: Changes of html-files are not directly available - need to re-deploy

2010-02-10 Thread Joachim Rohde
writing out files as root and Tomcat trying to read/load the deployed files but not having read-perms on those root-owned files. Just want to avoid weirdness. -R On Tue, Feb 9, 2010 at 1:33 PM, Joachim Rohde mailingl...@joachimrohde.com wrote: First of all: I asked this question already

Changes of html-files are not directly available - need to re-deploy

2010-02-09 Thread Joachim Rohde
First of all: I asked this question already at http://www.coderanch.com/t/481846/Application-Frameworks/Application-Frameworks/Wicket-Changes-html-files-are where no one could help me. To my problem: I have here a little bug which is completly weird in my opinion. Usually when you are