TabbedPanel not generic ----------------------- Key: WICKET-2673 URL: https://issues.apache.org/jira/browse/WICKET-2673 Project: Wicket Issue Type: Improvement Components: wicket-extensions Affects Versions: 1.4.5 Reporter: Hielke Hoeve Priority: Trivial
It would be nice to have a generic TabbedPanel so you don't have to cast every ITab to the actual implementing class just to fetch something from the Panel it generates. In my case I have overridden newLink(String, int) to generate a AjaxSubmitLink, this needs a form and I need to fetch it from the appropriate Panel. But this is impossible without jumping through hoops because TabbedPanel has a field with List<ITab> instead of List<? extends ITab> or List<T> where T extends ITab. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.