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
            Priority: Trivial


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.

Reply via email to