Re: Wrapped FeedbackPanel and AjaxRequestTarget

2008-10-05 Thread Edgar Merino
Never mind, I guess this can be solved by calling the actual Parent that holds the FeedbackPanel: Component parent = null; do { parent = feedbackPanel.getParent(); } while(parent.getParent() != null); Regards, Edgar Merino Edgar Merino escribió: Hello once again, I've been coding

Wrapped FeedbackPanel and AjaxRequestTarget

2008-10-04 Thread Edgar Merino
Hello once again, I've been coding some Panels that might (or might not) use a FeedbackPanel to inform about their states, these panels are Ajax enabled. Since the feedbackPanel does not reside on the panel itself (it is added to the panels parent component), I've decided to come out with