This question is locked. New answers and comments are not allowed.
I would like to use the GlobalFilters now available in MVC 3 that are registered with
RegisterGlobalFilters(GlobalFilters.Filters);
so that I can use a
filters.Add(new HandleErrorAttribute
{
ExceptionType = typeof(DbException),
View = "GtgError",
Order = 1
});
for more convenient handling and analysis of database errors that result in server 500 bombs.
I am able to get it to work in a simple MVC3 app that does NOT use a Telerik Grid, but I cannot get it to work when placed in the MVC3 app with a Telerik Grid.
I noticed that the Telerik demos do NOT use any GlobalFilters. Is it possible to do so? Could Telerik please provide a simple demo of a GlobalFilter used with the Telerik Grid?
Thanks.
RegisterGlobalFilters(GlobalFilters.Filters);
so that I can use a
filters.Add(new HandleErrorAttribute
{
ExceptionType = typeof(DbException),
View = "GtgError",
Order = 1
});
for more convenient handling and analysis of database errors that result in server 500 bombs.
I am able to get it to work in a simple MVC3 app that does NOT use a Telerik Grid, but I cannot get it to work when placed in the MVC3 app with a Telerik Grid.
I noticed that the Telerik demos do NOT use any GlobalFilters. Is it possible to do so? Could Telerik please provide a simple demo of a GlobalFilter used with the Telerik Grid?
Thanks.