You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wicket.apache.org by themugprogrammer <pa...@transport.wa.gov.au> on 2011/05/26 02:58:05 UTC

Re: Palette and recorderComponent initialization (Wicket 1.3.1)

try calling palettes beforeRender() method but only after you have added the
palette to the form. Seems to force initlialization of the recorder
component

vehicleDetailForm.add(conditionCodePalette);
        
        conditionCodePalette.beforeRender();
        conditionCodePalette.getRecorderComponent().add(new
AjaxFormComponentUpdatingBehavior("onchange") {
            
            @Override
            protected void onUpdate(AjaxRequestTarget target){
                
            }
            
        });

--
View this message in context: http://apache-wicket.1842946.n4.nabble.com/Palette-and-recorderComponent-initialization-Wicket-1-3-1-tp1908616p3551386.html
Sent from the Forum for Wicket Core developers mailing list archive at Nabble.com.