AjaxFallbackDefaultDataTable and DefaultDataTable require SortableDataProvider
class, not an interface
------------------------------------------------------------------------------------------------------
Key: WICKET-781
URL: https://issues.apache.org/jira/browse/WICKET-781
Project: Wicket
Issue Type: Improvement
Components: wicket-extensions
Affects Versions: 1.3.0-beta2, 1.2.6
Reporter: Evgeniy Platonov
Fix For: 1.3.0-beta3
Currently classes DefaultDataTable and AjaxFallbackDefaultDataTable require
SortableDataProvider class in both constructors. It really, really, really
would be good to have an interface there.
e.g.
{code}
public interface ISortableDataProvider extends IDataProvider,
ISortStateLocator, IDetachable {}
public abstract class SortableDataProvider implements ISortableDataProvider {
// CURRENT IMPLEMENTATION GOES HERE
}
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.