Re: Wicket's error message-> java.lang.IllegalStateException: This container is already dequeing

2019-12-28 Thread LSomefun
I do appreciate you looking at this while on holiday. The 2nd constructor of PrescientTemplateOriginalPage I have deleted. Truth is it was not needed. The HTML code of PrescientHome I initially submitted did not include the HeaderPanel and footerPanel, was because of inheritance from PrescientTempl

Best way to refresh entire NestedTree

2019-12-28 Thread Chris Colman
I have a UI layout where selection changes in one component need to result in a complete repopulation of the nodes in an associated NestedTree. Obviously I don't want to do a complete page refresh so I was wondering what the best way is to do an AJAX refresh of the entire NestedTree after I've

Best way to refresh entire NestedTree

2019-12-28 Thread chrisco
I have a UI layout where selection changes in one component need to result in a complete repopulation of the nodes in an associated NestedTree. Obviously I don't want to do a complete page refresh so I was wondering what the best way is to do an AJAX refresh of the entire NestedTree after I've tol

Re: Wicket's error message-> java.lang.IllegalStateException: This container is already dequeing

2019-12-28 Thread francois meillet
There are few problems I can see (from my mobile, being on hollidays ) First you should not pass component to PrescientTemplateOriginalPage constructor's argument. Second : in the second constructor you do not add the panels to the page Third : in the html code the header and footer tags are not

Re: Wicket's error message-> java.lang.IllegalStateException: This container is already dequeing

2019-12-28 Thread LSomefun
Thanks for you reply. Included more codes below. Code for PrescientTemplateOriginalPage below package org.possible.bug; import org.apache.wicket.markup.html.WebPage; import org.apache.wicket.markup.html.basic.Label; import org.apache.wicket.model.Model; /** * * @author oyeso */ public class P