Method | Description | |
---|---|---|
CreateChildControls ( |
Creates the model representation of the child controls used to display and edit the filter settings.
|
|
FormatSelection ( |
Provides a user-friendly description of the specified filter values.
|
|
GetClientFormatSelection ( |
Formats the selection on the client-side. When the filter is collapsed by the user, the Filterfield control will set the description of the filter to whatever is returned by this property. If including script, the controls parent container can be referenced through a '$content' variable that is set by the control before referencing this property.
|
|
GetExpression ( |
Creates a Linq Expression that can be applied to an IQueryable to filter the result set.
|
|
GetSelection ( |
Gets a formatted string representing the current filter control values.
|
|
GetTitle ( |
Gets the user-friendly title used to identify the filter component.
|
|
SetSelection ( |
Sets the filter control values from a formatted string.
|
public CreateChildControls ( |
||
entityType | The System Type of the entity to which the filter will be applied. | |
filterControl | The control that serves as the container for the filter controls. | |
return | System.Web.UI.Control[] |
public FormatSelection ( |
||
entityType | The System Type of the entity to which the filter will be applied. | |
selection | string | A formatted string representing the filter settings. |
return | string |
public GetClientFormatSelection ( |
||
entityType | The System Type of the entity to which the filter will be applied. | |
return | string |
public GetExpression ( |
||
entityType | The type of entity in the result set. | |
serviceInstance | IService | A service instance that can be queried to obtain the result set. |
parameterExpression | System.Linq.Expressions.ParameterExpression | The input parameter that will be injected into the filter expression. |
selection | string | A formatted string representing the filter settings. |
return |
public GetSelection ( |
||
entityType | The System Type of the entity to which the filter will be applied. | |
controls | The collection of controls used to set the filter values. | |
return | string |
public GetTitle ( |
||
entityType | The System Type of the entity to which the filter will be applied. | |
return | string |
public SetSelection ( |
||
entityType | The System Type of the entity to which the filter will be applied. | |
controls | The collection of controls used to set the filter values. | |
selection | string | A formatted string representing the filter settings. |
return | void |