ReportModuleOptions.ShowAdditionalNavigation Property
Specifies the default value for the IModelNavigationItemsForReports.GenerateRelatedReportsGroup property.
Namespace: DevExpress.ExpressApp.ReportsV2
Assembly: DevExpress.ExpressApp.ReportsV2.v24.1.dll
NuGet Package: DevExpress.ExpressApp.ReportsV2
Declaration
Property Value
Type | Description |
---|---|
Boolean | true, to enable context navigation for the Reports module, by default; otherwise, false. |
Remarks
The following example demonstrates how to specify this property:
File: MySolution.Blazor.Server\Startup.cs.
using DevExpress.ExpressApp.ApplicationBuilder;
using DevExpress.ExpressApp.Blazor.ApplicationBuilder;
using DevExpress.Persistent.BaseImpl;
// ...
public class Startup {
// ...
public void ConfigureServices(IServiceCollection services) {
// ...
services.AddXaf(Configuration, builder => {
builder.UseApplication<MySolutionBlazorApplication>();
builder.Modules
// ...
.AddReports(options => {
options.ShowAdditionalNavigation = true;
})
// ...
});
// ...
}
}
See Also