Home » tapestry-src-5.0.19 » org.apache.tapestry5.grid » [javadoc | source]
org.apache.tapestry5.grid
public interface: GridSortModel [javadoc | source]

All Known Implementing Classes:
    DefaultGridSortModel

Models the sorting applied to the a org.apache.tapestry5.grid.GridDataSource .
Method from org.apache.tapestry5.grid.GridSortModel Summary:
clear,   getColumnSort,   getSortConstraints,   updateSort
Method from org.apache.tapestry5.grid.GridSortModel Detail:
 public  void clear()
 public ColumnSort getColumnSort(String columnId)
    Identifies how (or if) a column is sorted.
 public List<SortConstraint> getSortConstraints()
    Returns a list of sort constraints, identifying which columns are sorted, and how. May return an empty list (but won't return null).
 public  void updateSort(String columnId)
    Updates the column sort. The receiver determines how to handle the sort request.