error Running wicket in development mode

2012-11-13 Thread saty
Switched to run in development mode but it throws below error, am i suppose
to add markup for these?
Did extensive google on this, found nothing so far, thanks

Root cause:
org.apache.wicket.WicketRuntimeException: The component(s) below failed to
render. Possible reasons could be that: 1) you have added a component in
code but forgot to reference it in the markup (thus the component will never
be rendered), 2) if your components were added in a parent container then
make sure the markup for the child container includes them in
wicket:extend.

1. [Component id = statusLabel]
2. [FeedbackPanel [Component id = feedbackPanel]]
3. [FeedbackPanel [Component id = feedbackPanel]]
4. [Component id = assignee]

at org.apache.wicket.Page.checkRendering(Page.java:665)
at org.apache.wicket.Page.onAfterRender(Page.java:822)
at org.apache.wicket.markup.html.WebPage.onAfterRender(WebPage.java:215)
at org.apache.wicket.Component.afterRender(Component.java:891)
at org.apache.wicket.Component.render(Component.java:2305)
at org.apache.wicket.Page.renderPage(Page.java:1021)
at
org.apache.wicket.request.handler.render.WebPageRenderer.renderPage(WebPageRenderer.java:116)
at
org.apache.wicket.request.handler.render.WebPageRenderer.respond(WebPageRenderer.java:244)
at
org.apache.wicket.core.request.handler.RenderPageRequestHandler.respond(RenderPageRequestHandler.java:165)
at
org.apache.wicket.request.cycle.RequestCycle$HandlerExecutor.respond(RequestCycle.java:830)
at
org.apache.wicket.request.RequestHandlerStack.execute(RequestHandlerStack.java:64)
at
org.apache.wicket.request.cycle.RequestCycle.execute(RequestCycle.java:253)
at
org.apache.wicket.request.cycle.RequestCycle.processRequest(RequestCycle.java:210)
at
org.apache.wicket.request.cycle.RequestCycle.processRequestAndDetach(RequestCycle.java:281)
at
org.apache.wicket.protocol.http.WicketFilter.processRequest(WicketFilter.java:188)
at org.apache.wicket.protocol.http.WicketFilter.d



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/error-Running-wicket-in-development-mode-tp4653844.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: error Running wicket in development mode

2012-11-13 Thread Martin Grigorov
It complains because this check is active only in DEV mode.
See org.apache.wicket.settings.IDebugSettings#getComponentUseCheck


On Tue, Nov 13, 2012 at 9:26 PM, saty satya...@gmail.com wrote:

 Just wanted to add that application is running fine in deployment mode, not
 sure why its complaining in development mode for missing markup.



 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/error-Running-wicket-in-development-mode-tp4653844p4653846.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com http://jweekend.com/


Re: error Running wicket in development mode

2012-11-13 Thread saty
I can disable this using:

getDebugSettings().setComponentUseCheck(false);

what is the equivalent for below (wicket 1.4)  in wicket 6+

getAjaxSettings().setAjaxDebugModeEnabled(true);




--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/error-Running-wicket-in-development-mode-tp4653844p4653856.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: error Running wicket in development mode

2012-11-13 Thread Martin Grigorov
org.apache.wicket.settings.IDebugSettings#setAjaxDebugModeEnabled


On Tue, Nov 13, 2012 at 11:23 PM, saty satya...@gmail.com wrote:

 I can disable this using:

 getDebugSettings().setComponentUseCheck(false);

 what is the equivalent for below (wicket 1.4)  in wicket 6+

 getAjaxSettings().setAjaxDebugModeEnabled(true);




 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/error-Running-wicket-in-development-mode-tp4653844p4653856.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com http://jweekend.com/