Interface IBaseGridController
A common interface that all implementations of BaseGridController provide access to which manipulate the IBaseGrid<T> view
Inherited Members
Namespace: LemonEdge.Client.Core.Views.Core
Assembly: ClientCore.dll
Syntax
public interface IBaseGridController : IGrid, IModelViewController
Properties
ColumnFilters
Provides a list of the current filters applied to the grid in the view by the user
Declaration
IEnumerable<QueryableFilter> ColumnFilters { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<QueryableFilter> |
ColumnSortings
Provides a list of the current sortings applied to the grid in the view by the user
Declaration
IEnumerable<QueryableSort> ColumnSortings { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<QueryableSort> |
InternalFilter
Provides the internal filter applied to the grid
Declaration
QueryableFilter InternalFilter { get; set; }
Property Value
Type | Description |
---|---|
QueryableFilter |