OK folks. I copied code directly from the tutorial and modified it slightly.
on rebind it fails saying expression expected. filterExpression looks correct from what I can determine. Can someone please help me here? What am I doing wrong?
protected
void
FilterException()
{
string
filterExpression;
filterExpression =
"([ExceptionType] = '"
+ DDLException.SelectedValue +
"')"
;
RadGrid1.MasterTableView.FilterExpression = filterExpression;
RadGrid1.MasterTableView.Rebind();
}
on rebind it fails saying expression expected. filterExpression looks correct from what I can determine. Can someone please help me here? What am I doing wrong?