AbstractColumn::isSortable() doesn't know about overrided getSortProperty()
---------------------------------------------------------------------------
Key: WICKET-2239
URL: https://issues.apache.org/jira/browse/WICKET-2239
Project: Wicket
Issue Type: Bug
Components: wicket-extensions
Reporter: Anton Veretennikov
Priority: Trivial
Overriding getSortProperty() does not make column sortable until isSortable() is
not overrided also.
I think this code in AbstractColumn::isSortable() may be changed like:
public boolean isSortable()
{
return sortProperty != null; //change to getSortProperty()
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.