Skip to main content

ASPxSchedulerOptionsBehavior.ShowDetailedErrorInfo Property

Specifies whether detailed error information is displayed on the form when an error occurs.

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v23.2.dll

NuGet Package: DevExpress.Web.Scheduler

Declaration

[DefaultValue(true)]
public bool ShowDetailedErrorInfo { get; set; }

Property Value

Type Default Description
Boolean true

true to show detailed information; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ShowDetailedErrorInfo
ASP.NET MVC Extensions SchedulerSettings
.OptionsBehavior .ShowDetailedErrorInfo
ASP.NET Web Forms Controls ASPxScheduler
.OptionsBehavior .ShowDetailedErrorInfo

Remarks

If an error occurs or an exception is raised while saving an appointment, the appointment editing form looks like this:

ShowDetailErrorInfo_True

The ShowDetailedErrorInfo is set to true by default. Clicking the Show detail info hyperlink reveals detailed information, including the call stack.

Otherwise, when the ShowDetailedErrorInfo is false, the message is much more compact, as in the picture below:

 

ShowDetailErrorInfo_False

See Also