Re: [Wicket-user] IAlternateParentProvider method attributes

2006-10-05 Thread Juergen Donnerstag
The childId. The component is not save as we are in the child component's constructor when getAlternateParent() is used. And please bare in mind IAlternateParentProvider is fairly new in Wicket 2.0 and changes might happen, as allways with pre-RC code. Juergen On 10/1/06, Alberto Bueno <[EMAIL P

Re: [Wicket-user] IAlternateParentProvider method attributes

2006-10-02 Thread igor.vaynberg
the children of the component are not available yet. the linkage between component and its parent is the first thing created by the call to super(). only the class and id are available because it would be dangerous to give you access to anything else because the child is still being constructed.

[Wicket-user] IAlternateParentProvider method attributes

2006-10-01 Thread Alberto Bueno
Hi, I'm using the IalternateParentProvider to manipulate the parent of the children of my component. But the problem is that I need information about the children in getAlternateParent method and I only have the childClass and the childId. Why the child component is not passed to the method? Are t