Re: Lazyload does not work with deployment mode

2013-12-27 Thread Martin Grigorov
Hi, On Dec 21, 2013 3:19 PM, "letien" wrote: > I have researched deployment mode, and saw that: > > In deployment mode , we do everything to make the life of the users better. > This means disabling all the stuff that helps developers . > > 1. Disable component hierarchy checks (only the things t

Re: wicket-el - is this a safe way to hook into wicket?

2013-12-27 Thread Martin Grigorov
https://issues.apache.org/jira/browse/WICKET-5456 6.13 should be released soon. Martin Grigorov Wicket Training and Consulting On Mon, Dec 23, 2013 at 4:21 PM, Jeremy Thomerson wrote: > On Sun, Dec 22, 2013 at 5:30 AM, Steve wrote: > > > So what it is the best way to go about requesting a ch

Re: Wicket serving AngularJS app

2013-12-27 Thread Martin Grigorov
Hi, I see two options: 1) use Wicket Page instead of index.html so Wicket can contribute JS/CSS resources to the header 2) use AngularJs functionalities to do this. This approach may lead to page rerendering/reflow (UI flickering) because Angular can do this after the initial page load Martin Gri

Get HTML from WebMarkupContainer

2013-12-27 Thread Rafael Barrera Oro
Hello! I've been googling a while now without success so i thought i might ask you. I'm trying to get the HTML of a WebMarkupContainer. That is, i have markup file, i have a Java class and i want to get the HTML code resulting from the render. I understand this is a tricky thing to do but, neverth

Re: Get HTML from WebMarkupContainer

2013-12-27 Thread Martin Grigorov
Hi, Check wicket-examples -> mailtemplate example On Dec 27, 2013 10:48 PM, "Rafael Barrera Oro" wrote: > Hello! > > I've been googling a while now without success so i thought i might ask > you. I'm trying to get the HTML of a WebMarkupContainer. That is, i have > markup file, i have a Java cla

Re: Get HTML from WebMarkupContainer

2013-12-27 Thread Rafael Barrera Oro
Thanks for the response Martin! This indeed seems to do the trick, however, the problem is that the project i'm working on is stuck on the 1.3.7 version of Wicket (long before the ComponentRenderer class is available, if i am not mistaken). Is there any other way to accomplish this? Thanks again

Re: Get HTML from WebMarkupContainer

2013-12-27 Thread Martin Grigorov
Copy ComponentRenderer.java and tweak it for 1.3.7... On Dec 28, 2013 12:03 AM, "Rafael Barrera Oro" wrote: > Thanks for the response Martin! > > This indeed seems to do the trick, however, the problem is that the project > i'm working on is stuck on the 1.3.7 version of Wicket (long before the >