Re: com.giffing.wicket.spring.boot.starter 1.0.8 WicketBootSecuredWebApplication OpenEntityManagerInView

2017-12-21 Thread Hans-Heinrich Braun
Thank you On Wed, Dec 20, 2017 at 5:09 PM, Hans-Heinrich Braun < hansheinrichbr...@yahoo.de.invalid> wrote: > I tried to transfer my application to com.giffing.wicket.spring.boot.starter > 1.0.8.Following the wicket tree example i tried to transfer my tree > structure to the Webappl

Re: com.giffing.wicket.spring.boot.starter 1.0.8 WicketBootSecuredWebApplication OpenEntityManagerInView

2017-12-21 Thread Hans-Heinrich Braun
Donnerstag, 21. Dezember 2017, 12:44:44 MEZ hat Andrea Del Bene Folgendes geschrieben: Hi, could you please give more details about your problem (stacktrace, yhe example application you are using, etc...)? Thank you On Wed, Dec 20, 2017 at 5:09 PM, Hans-Heinrich Braun < hansheinrichbr..

com.giffing.wicket.spring.boot.starter 1.0.8 WicketBootSecuredWebApplication OpenEntityManagerInView

2017-12-20 Thread Hans-Heinrich Braun
I tried to transfer my application to com.giffing.wicket.spring.boot.starter 1.0.8.Following the wicket tree example i tried to transfer my tree structure to the Webapplication therefare i tried to extend  WicketBootSecuredWebApplication but then the application complained about authorization pr

WG: Problem with testing AbstractAjaxBehavior

2017-03-14 Thread Hans-Heinrich Braun
In my Application i have a DropDownSelect which changes a Label onUpdate  by  AjaxFormComponentUpdatingBehaviorThen there is a Button which tries access at the selected item. In the real Webapp it works fine but when i  test itwhen i click the Button the selected Item is null.What I am doing  wro

Problem with testing AbstractAjaxBehavior

2017-03-13 Thread Hans-Heinrich Braun
In my Application i have a DropDownSelect which changes a Label onUpdate by   AjaxFormComponentUpdatingBehaviorThen there is a Button which tries access at the selected item. In the real Webapp it works fine but when i test itwhen i click the Button the selected Item is null.What I am doing wrong

Mock Application.get()

2017-03-07 Thread Hans-Heinrich Braun
I am storing the authenticated GoogleService in the Webapplication to use it in different components.Now i want to test it but Application is not Mockified. What do you recommend how to test my application with this service.

Re: Re: Re: FormTester and IModel

2016-05-29 Thread Hans-Heinrich Braun
. Maybe it's my version of EntityModel i send you once more the whole application.Von meinem Samsung Galaxy Smartphone gesendet. Ursprüngliche Nachricht Von: Martin Grigorov Datum: 19.05.16 10:19 (GMT+01:00) An: users@wicket.apache.org, Hans-Heinrich Braun

WicketTester FormTester an IModel

2016-05-23 Thread Hans-Heinrich Braun
I reduced the application to the essential part to demonstrate the different behaviour in jetty and with WicketTester. myproject.tar.gz Description: application/gzip - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

FormTester and IModel

2016-05-19 Thread Hans-Heinrich Braun
I tested a little bit but the reason is not so obviousthere is a series of DropDowbFields where each sets the choices for the next protected IModel selectedLand=new EntityModel(Land.class,null); protected IModel selectedOrt=new EntityModel(Orte.class,null);; protected IModel selectedStrasse=new

Re: Wicket Bootstrap 0.9.9 is released

2015-06-01 Thread Hans-Heinrich Braun
Martin, I followed your advice how to  give the Bootswatch Theme functionality toa Tree component. I made the following Implementation: MyNestedTree : public MyNestedTree(String id, ITreeProvider provider, IModel> state)  { super(id, provider, state); add(new BootswatchThemeProvider().getTheme(B

Re: Re: Re: Re: Wicket Bootstrap and Wizard

2015-05-26 Thread Hans-Heinrich Braun
The error only happens when I am at the tree page and change the theme.When I change the theme before no  problem.

Re: Re: Re: Re: Wicket Bootstrap and Wizard

2015-05-26 Thread Hans-Heinrich Braun
ur Bootstrap adaption > the > > > Boutswatch Themes are interfaced by ITheme.I didn't yet get out how > they > > > are brought in the Components and my first trial to turn them in > > Behaviors > > > didn't work.I tried to use the renderHead of the ITheme and to ad

Re: Wicket Bootstrap and Wizard

2015-05-24 Thread Hans-Heinrich Braun
What would you recommend?Heiner Braun Von: Martin Grigorov An: "users@wicket.apache.org" ; Hans-Heinrich Braun Gesendet: 10:16 Sonntag, 24.Mai 2015 Betreff: Re: Wicket Bootstrap and Wizard Hi Henry, It is hard for me to say what is wrong. AFAIR wicket-extensions' Wizard u

Wicket Bootstrap and Wizard

2015-05-23 Thread Hans-Heinrich Braun
Hello Martin, I try to include a Wizard Example in your Wicket Bootstrap environment.In the center of the adaption is the Class WizardPage: package braunimmobilien.bootstrap.webapp.pages.wizard; import java.lang.reflect.Constructor;import org.apache.wicket.request.mapper.parameter.PageParameters;

ProgressBar

2015-03-18 Thread Hans-Heinrich Braun
Hello Igor, I want to inplement a progressBar by  your Wicket jquery example.If I use a batch process as Timer, how i do have to implement it in your example?I did it already with cocoon and now want to try it with wicket. Thanks Heiner