Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxReportDesignerDataSourceSettings Class

Contains settings that configure the user interface related to the data sources in the Report Designer.

Namespace: DevExpress.Blazor.Reporting

Assembly: DevExpress.Blazor.Reporting.v24.2.JSBasedControls.Common.dll

NuGet Package: DevExpress.Blazor.Reporting.JSBasedControls.Common

#Declaration

public class DxReportDesignerDataSourceSettings :
    SettingsComponent<ReportDesignerDataSourceSettingsModel>

#Remarks

The following code hides the Add Data Source button and UI elements that allow the user to change and delete the data source and queries in the Field List:

<DxReportDesigner ReportName="TestReport" Height="calc(100vh - 130px)" Width="100%" AllowMDI="true">>
    <DxReportDesignerDataSourceSettings AllowAddDataSource="false" 
        AllowEditDataSource="false" 
        AllowRemoveDataSource="false" />
</DxReportDesigner>

The Field List with hidden actions is shown in the following image:

web-designer-field-list-data-source-settings-disabled

#Inheritance

Object
ComponentBase
DevExpress.Blazor.Reporting.Base.SettingsComponent<DevExpress.Blazor.Reporting.ReportDesignerDataSourceSettingsModel>
DxReportDesignerDataSourceSettings
See Also