-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathReportDesigner.razor
22 lines (19 loc) · 1.11 KB
/
ReportDesigner.razor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@page "/reportdesigner"
<h1>End-User Report Designer - Customization</h1>
<ul>
<li>Menu button is removed</li>
<li>Save and New buttons are moved to the toolbar</li>
<li>Report Wizard is run automatically on startup</li>
<li>Blank and Cross-Tab report types (the first and the last in the list) are removed from the Wizard page</li>
</ul>
<DxWasmReportDesigner ReportName="TestReport" Height="650px" Width="100%">
<DxWasmReportDesignerRequestOptions GetDesignerModelAction="DXXRD/GetReportDesignerModel">
</DxWasmReportDesignerRequestOptions>
<DxReportDesignerModelSettings AllowMDI="true">
</DxReportDesignerModelSettings>
<DxReportDesignerCallbacks CustomizeElements="ReportingDesignerCustomization.onCustomizeElements"
CustomizeMenuActions="ReportingDesignerCustomization.onCustomizeMenuActions"
BeforeRender="ReportingDesignerCustomization.onBeforeRender"
CustomizeWizard="ReportingDesignerCustomization.onCustomizeWizard"
/>
</DxWasmReportDesigner>