All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
protected
void
RadGrid1_PreRender(
object
sender, EventArgs e)
{
if
(!Page.IsPostBack)
RadGrid1.MasterTableView.FilterExpression =
"(([Date] >= '01/01/13') AND ([Date] <= '01/04/13'))"
;
GridColumn column = RadGrid1.MasterTableView.GetColumnSafe(
"Date"
);
column.CurrentFilterFunction = GridKnownFunction.Contains;
column.CurrentFilterValue =
"01/01/13 01/04/13"
RadGrid1.MasterTableView.Rebind();
}