[ https://issues.apache.org/jira/browse/WICKET-960?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Igor Vaynberg resolved WICKET-960. ---------------------------------- Resolution: Fixed Fix Version/s: 1.3.0-beta4 > FilteredAbstractColumn unary constructor expects Model instead of IModel > ------------------------------------------------------------------------ > > Key: WICKET-960 > URL: https://issues.apache.org/jira/browse/WICKET-960 > Project: Wicket > Issue Type: Bug > Components: wicket-extensions > Affects Versions: 1.2.6 > Reporter: Gabor Szokoli > Assignee: Igor Vaynberg > Priority: Trivial > Fix For: 1.3.0-beta4 > > > We have this now: > public FilteredAbstractColumn(Model displayModel) > { > super(displayModel); > } > Here's the super constructor it delegates to: > public AbstractColumn(IModel displayModel) > { > this(displayModel, null); > } > So I really don't see why the FilteredAbstractColumn would need Model > descendants specifically. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.