Question regarding ResourceBundles and relative paths

2013-10-02 Thread Marcel Hoerr
hi wicket community! i have a question regarding the usage of ResourceBundles. consider the following use case: i want to add a ResourceBundle in my wicketapplication class with a css file (and some relative paths to images/fonts in it). right now i add the ResourceBundle with application

Aw: Re: Wicket-bootstrap Bootstrap 3 support

2013-09-26 Thread Marcel Hoerr
hi, i replaced the my 0.8.x version with the new 0.9.0-SNAPSHOT and get the following error: WARN - WicketObjects - Could not resolve class [fonts] java.lang.ClassNotFoundException: fonts Actually this font can not be loaded: fonts/glyphicons-halflings-regular.woff I found this thread on

wicket 6 and FilterToolbar

2013-06-06 Thread Marcel Hoerr
Hey folks, i am currently trying to use a FilterToolbar with a DataTable (wicket 6). Everything works fine without the FilterToolbar (the filering of course not), if the FilterToolbar is added via dataTable.add(new FilterToolbar(dataTable, form, dataProvider)); wicket throws the following

Aw: Re: Re: wicket 6 and a confirm dialog

2013-05-28 Thread Marcel Hoerr
? On Mon, May 27, 2013 at 12:34 PM, Marcel Hoerr marcel.ho...@gmx.de wrote: Hi wicket community, i have a question about how to implement a confirm dialog via javascript on a button or link. Before wicket 6 we used a simple

wicket 6 and a confirm dialog

2013-05-27 Thread Marcel Hoerr
Hi wicket community,   i have a question about how to implement a confirm dialog via javascript on a button or link. Before wicket 6 we used a simple behavior (as mentioned here: https://cwiki.apache.org/WICKET/getting-user-confirmation.html) which could be used to enrich any button or link

Fwd: Re: wicket 6 and a confirm dialog

2013-05-27 Thread Marcel . Hoerr
links ? On Mon, May 27, 2013 at 12:34 PM, Marcel Hoerr marcel.ho...@gmx.de wrote: Hi wicket community, i have a question about how to implement a confirm dialog via javascript on a button or link. Before wicket 6 we used a simple behavior (as mentioned here

Re: [ANN] wicket-dnd now ready for Wicket 6

2013-01-10 Thread Marcel Hoerr
Hi Sven, works like a charm, thanks! kind regards Marcel Original-Nachricht Datum: Wed, 09 Jan 2013 20:34:47 +0100 Von: Sven Meier s...@meiers.net An: users@wicket.apache.org Betreff: Re: [ANN] wicket-dnd now ready for Wicket 6 Hi Marcel, I released wicket-dnd-0.6.0.

Re: question regarding AutoCompleteTextField

2012-11-05 Thread Marcel . Hoerr
Hi Martin, thanks for the reply. i created WICKET-4857 and attached both quickstarts. - marcel Original-Nachricht Datum: Mon, 5 Nov 2012 16:23:02 +0200 Von: Martin Grigorov mgrigo...@apache.org An: users@wicket.apache.org Betreff: Re: question regarding

Re: onSubmit - Button vs AjaxButton

2011-09-22 Thread Marcel Hoerr
() is called Or put a breakpoint in org.apache.wicket.ajax.AbstractDefaultAjaxBehavior.onRequest() and follow to see where it breaks. On Thu, Sep 22, 2011 at 2:15 PM, Marcel Hoerr marcel.ho...@gmx.de wrote: hey guys, i have a question regarding the onSubmit method in Button

Re: onSubmit - Button vs AjaxButton

2011-09-22 Thread Marcel Hoerr
() {...}.onSubmit(AjaxRequestTarget): @Override protected void onSubmit(AjaxRequestTarget target) { AjaxButton.this.onSubmit(target, AjaxButton.this.getForm()); } What do you mean by that AjaxFormSubmitBehavior handles the event ? On Thu, Sep 22, 2011 at 5:22 PM, Marcel Hoerr marcel.ho

Re: onSubmit - Button vs AjaxButton

2011-09-22 Thread Marcel Hoerr
as you suggested i debugged the code in AbstractDefaultAjaxBehavior. ;-) Original-Nachricht Datum: Thu, 22 Sep 2011 17:10:07 +0200 Von: Marcel Hoerr marcel.ho...@gmx.de An: users@wicket.apache.org Betreff: Re: onSubmit - Button vs AjaxButton as you debugged the code

Re: onSubmit - Button vs AjaxButton

2011-09-22 Thread Marcel Hoerr
be the submitting component but the button at that point? -igor On Thu, Sep 22, 2011 at 8:10 AM, Marcel Hoerr marcel.ho...@gmx.de wrote: as you debugged the code in AbstractDefaultAjaxBehavior. the actual call hierachy is the following: - AbstractDefaultAjaxBehavior.onRequest

AttributeModifier and AjaxLink in 1.5

2011-09-21 Thread Marcel Hoerr
hey guys, i have a problem with an AttributeModifer and an AjaxLink in wicket 1.5. we havea custom AttributeModifier (onclick) which basicly adds a javascript confirm to the given component (Button or in this case an AjaxLink). in wicket 1.4 the AttributeModifier is added after the

Re: AttributeModifier and AjaxLink in 1.5

2011-09-21 Thread Marcel Hoerr
() method. that's why it comes second You'll have to override onInitialize and add your behavior there On Wed, Sep 21, 2011 at 4:52 PM, Marcel Hoerr marcel.ho...@gmx.de wrote: hey guys, i have a problem with an AttributeModifer and an AjaxLink in wicket 1.5. we havea custom