Re: (Customizable) Fragment as String

2016-10-15 Thread Martin Grigorov
Sorry, but I don't find a way to make it work. It will need more thinking and debugging and I have no that much time right now. Just use Panel instead of Fragment. I'll add a comment to ComponentRenderer's javadoc that Fragments are not supported. Martin Grigorov Wicket Training and Consulting

Re: Bookmarkable link doesn't become a https link

2016-10-15 Thread Lars Törner
Hi Martin and thanks for your answer! I think that what you say is that the documentation I found is correct. "It is extremely important that when setting the rootRequestMapper it is done AFTER you have added any bookmarkable links otherwise they will not be switched over to Secure mode". I

Re: WICKET-6249

2016-10-15 Thread Martin Grigorov
Hi Jonas, Looking at the changes at WICKET-6249 I think the problem is fixed and the ticket could be closed. AFAIK Martijn has some hardware problems and that's why he is not able to release 6.x, 7.x and 8.x. I hope he will release them soon. I also wait for some fixes in 7.5.0. Martin Grigorov

Re: Bookmarkable link doesn't become a https link

2016-10-15 Thread Martin Grigorov
Hi Lars, mountPage("page2", Page2.class); setRootRequestMapper(new HttpsMapper(getRootRequestMapper(), new HttpsConfig(8080, 8443))); mountPage("page3", Page3.class); Now if I am at Page1 (http://localhost:8080/page1) and there I have add(new BookmarkablePageLink("page2", Page2.class)); then

Re: Wicket vs JS frameworks.

2016-10-15 Thread Sebastien
Hi, > I believe that the browser it self became a real platform for > applications. > > Would be nice to have a material design implemented also in Wicket, like > > the React version, > > www.material-ui.com > > there is also Angular 1 > > material.angularjs.org > > and Angular 2 > >

Re: Wicket vs JS frameworks.

2016-10-15 Thread Martin Grigorov
On Sat, Oct 15, 2016 at 6:55 PM, Marcel Barbosa Pinto < marcel.po...@gmail.com> wrote: > I am working on a complex and demanding Angular 2 project for marketing > analytics, and I can tell that with Typescript the development process is > exponentially improved. > > First we need to understand

Re: Wicket vs JS frameworks.

2016-10-15 Thread Marcel Barbosa Pinto
I am working on a complex and demanding Angular 2 project for marketing analytics, and I can tell that with Typescript the development process is exponentially improved. First we need to understand that the Angular project came from the GWT project. The Google devs realized at that time that they

Re: Testing Page Rendered when using AnnotationsShiroAuthorizationStrategy

2016-10-15 Thread Martin Grigorov
Hi, The exception message didn't make it. Please paste the whole exception again. I use Spring Security and I don't have any problems with testing the app. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Sat, Oct 15, 2016 at 3:41 PM, David Beer

Re: Clear input form values

2016-10-15 Thread Martin Grigorov
Please create a quickstart and share it somewhere. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Sat, Oct 15, 2016 at 1:02 PM, ganea iulia wrote: > Hello, > > Do you have any new advise on this? > Thank you. > > On Fri, Oct 14, 2016 at

Testing Page Rendered when using AnnotationsShiroAuthorizationStrategy

2016-10-15 Thread David Beer
Hi All I am using shiro to handle my authentication and Authorization for pages and some components. My current problem is that the page is Annotated like so @ShiroSecurityConstraint(constraint = ShiroConstraint.LoggedIn). The problem is I keep getting an java.lang.IllegalStateException: missing

Re: Clear input form values

2016-10-15 Thread ganea iulia
Hello, Do you have any new advise on this? Thank you. On Fri, Oct 14, 2016 at 11:02 AM, ganea iulia wrote: > Hello, > But that was it. > The code contained both the > txtName.setOutputMarkupId(true) and the > txtName.add(new AjaxFormComponentUpdatingBehavior("change") {

Re: Wicket vs JS frameworks.

2016-10-15 Thread Andrea Del Bene
IMHO things are quite simple. JS base app are told to be highly scalable because they rely on a REST, stateless architecture. So scaling is just a matter of adding servers without worrying of replicating a user session. This is true until you need to log a user into your app. At this point

Re: Wicket vs JS frameworks.

2016-10-15 Thread Martin Grigorov
On Sat, Oct 15, 2016 at 3:44 AM, fzb wrote: > Thanks Martin for the reply. Understood the points conveyed. > > > Martin Grigorov-4 wrote > > It scales with the knowledge of the engineers. > > It is not just Wicket when you need big scale application. > > It goes from the OS