Hi,
How do I go about firing actionevents for nested controls? This is my code:
8< ----- 8< ----- 8< ----- 8< ----- 8< ----- 8< ----- 8< ----- 8<
ActionLink first = new ActionLink("firstLink", this, "onFirst");
first.setParameter("configuration", String.valueOf(configID));
first.setImageSrc("/resources/images/icons/first.png");
navigation.add(first); //navigation = an AbstractContainer
container.add(navigation); //container = another AbstractContainer
this.add(container); // "this" is the page
>8 ----- >8 ----- >8 ----- >8 ----- >8 ----- >8 ----- >8 ----- >8
The method public boolean onFirst() is never reached.I assume it has to
do with the ActionLink not being in the Page but in a container which is
in a container. What do I do wrong here?
Cheers,
WarnerJan