Updated `_ViewImports.cshtml` to include DevExpress and DevExtreme tag helpers. Created `DocumentViewerDevExpress.cshtml` for displaying a DevExpress Document Viewer with necessary CDN links. Implemented the corresponding code-behind in `DocumentViewerDevExpress.cshtml.cs` to handle model binding and report key generation.
10 lines
352 B
Plaintext
10 lines
352 B
Plaintext
@using DXApp.TemplateKitProject
|
|
@using DXApp.TemplateKitProject.Pages
|
|
@namespace DXApp.TemplateKitProject.Pages
|
|
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
|
|
|
@* --- DevExpress & DevExtreme Integration --- *@
|
|
@using DevExpress.AspNetCore
|
|
@using DevExpress.AspNetCore.Reporting
|
|
@using DevExtreme.AspNet.Mvc
|
|
@addTagHelper *, DevExtreme.AspNet.Core |