menu

ASP.NET Web Forms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class ReportDesignerProperties

    Show / Hide Table of Contents

    Class ReportDesignerProperties

    Class for ReportDesigner Properties.

    Inheritance
    System.Object
    EJTagHelper
    ReportDesignerProperties
    Inherited Members
    EJTagHelper.GetControlDetails(String)
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Syncfusion.JavaScript.Models
    Assembly: Syncfusion.EJ.dll
    Syntax
    public class ReportDesignerProperties : EJTagHelper

    Constructors

    ReportDesignerProperties()

    Declaration
    public ReportDesignerProperties()

    Properties

    AjaxBeforeLoad

    Fires before AJAX loads.

    Declaration
    [JsonProperty("ajaxBeforeLoad")]
    public string AjaxBeforeLoad { get; set; }
    Property Value
    Type Description
    System.String

    Gets or sets the ajaxBeforeLoad event .

    AjaxError

    Fires when AJAX result is failed.

    Declaration
    [JsonProperty("ajaxError")]
    public string AjaxError { get; set; }
    Property Value
    Type Description
    System.String

    Gets or sets the ajaxError event.

    AjaxSuccess

    Fires when AJAX result is succeeded.

    Declaration
    [JsonProperty("ajaxSuccess")]
    public string AjaxSuccess { get; set; }
    Property Value
    Type Description
    System.String

    Gets or sets the ajaxSuccess event.

    ConfigurePaneSettings

    Gets or sets the configurePane settings.

    Declaration
    [JsonProperty("configurePaneSettings")]
    public ConfigurePaneSettings ConfigurePaneSettings { get; set; }
    Property Value
    Type Description
    ConfigurePaneSettings

    Gets the configurePane settings.

    Create

    Fires when the Report Designer widget is created.

    Declaration
    [JsonProperty("create")]
    public string Create { get; set; }
    Property Value
    Type Description
    System.String

    Gets or sets the create event.

    Destroy

    Fires when the report designer is destroyed successfully.If you want to perform any operation after destroying the reportdesigner control,you can make use of the destroy event.

    Declaration
    [JsonProperty("destroy")]
    public string Destroy { get; set; }
    Property Value
    Type Description
    System.String

    Gets the destroy event.

    ExtensionLocaleChanged

    Fires when the specified locale key was not present in report designer locale.

    Declaration
    [JsonProperty("extensionLocaleChanged")]
    public string ExtensionLocaleChanged { get; set; }
    Property Value
    Type Description
    System.String

    Gets or sets the extensionLocaleChanged event.

    Locale

    Gets or sets the locale for report designer.

    Declaration
    [JsonProperty("locale")]
    public string Locale { get; set; }
    Property Value
    Type Description
    System.String

    Gets the current locale as string value.

    OpenReportClick

    Fires while clicking open menu items.

    Declaration
    [JsonProperty("openReportClick")]
    public string OpenReportClick { get; set; }
    Property Value
    Type Description
    System.String

    Gets or sets the openReportClick event.

    PermissionSettings

    Gets or sets the permission settings.

    Declaration
    [JsonProperty("permissionSettings")]
    public PermissionSettings PermissionSettings { get; set; }
    Property Value
    Type Description
    PermissionSettings

    Gets the permission settings.

    ReportDataExtensions

    Gets or sets the list of datasource extensions.

    Declaration
    [JsonProperty("reportDataExtensions")]
    public List<ReportDataExtensionsModule> ReportDataExtensions { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.List<ReportDataExtensionsModule>

    Gets the list of datasource extensions.

    ReportItemExtensions

    Gets or sets the list of custom report items.

    Declaration
    [JsonProperty("reportItemExtensions")]
    public List<ReportItemExtensionsModule> ReportItemExtensions { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.List<ReportItemExtensionsModule>

    Gets the list of custom report items.

    ReportModified

    Fires when the report is modified.

    Declaration
    [JsonProperty("reportModified")]
    public string ReportModified { get; set; }
    Property Value
    Type Description
    System.String

    Gets or sets the reportModified event.

    ReportOpened

    Fires when the report is opened.

    Declaration
    [JsonProperty("reportOpened")]
    public string ReportOpened { get; set; }
    Property Value
    Type Description
    System.String

    Gets or sets the reportOpened event.

    ReportPath

    Gets or sets the path of report.

    Declaration
    [JsonProperty("reportPath")]
    public string ReportPath { get; set; }
    Property Value
    Type Description
    System.String

    Gets the path of the report.

    ReportSaved

    Fires when the report is saved.

    Declaration
    [JsonProperty("reportSaved")]
    public string ReportSaved { get; set; }
    Property Value
    Type Description
    System.String

    Gets or sets the reportSaved event.

    ReportServerUrl

    Gets or sets the report server url.

    Declaration
    [JsonProperty("reportServerUrl")]
    public string ReportServerUrl { get; set; }
    Property Value
    Type Description
    System.String

    Gets the report server URL.

    ReportType

    Gets or sets the report type.

    Declaration
    [JsonProperty("reportType")]
    [JsonConverter(typeof(StringEnumConverter))]
    public ReportType ReportType { get; set; }
    Property Value
    Type Description
    ReportType

    Gets the report type.

    SaveReportClick

    Fires when the save menu items are clicked.

    Declaration
    [JsonProperty("saveReportClick")]
    public string SaveReportClick { get; set; }
    Property Value
    Type Description
    System.String

    Gets or sets the saveReportClick event.

    ServiceAuthorizationToken

    Gets or sets the token to access the Report Server API services.

    Declaration
    [JsonProperty("serviceAuthorizationToken")]
    public string ServiceAuthorizationToken { get; set; }
    Property Value
    Type Description
    System.String

    Gets the token for report designer control to access the report server API.

    ServiceUrl

    Specifies the report Web API service url.

    Declaration
    [JsonProperty("serviceUrl")]
    public string ServiceUrl { get; set; }
    Property Value
    Type Description
    System.String

    Gets or sets the report service URL.

    ToolbarClick

    Fires while clicking the toolbar items.

    Declaration
    [JsonProperty("toolbarClick")]
    public string ToolbarClick { get; set; }
    Property Value
    Type Description
    System.String

    Gets or sets the toolbarClick event.

    ToolbarRendering

    Fires while rendering the Report Designer toolbar.

    Declaration
    [JsonProperty("toolbarRendering")]
    public string ToolbarRendering { get; set; }
    Property Value
    Type Description
    System.String

    Gets or sets the toolbarRendering event.

    ToolbarSettings

    Gets or sets the toolbar settings.

    Declaration
    [JsonProperty("toolbarSettings")]
    public ToolbarSettings ToolbarSettings { get; set; }
    Property Value
    Type Description
    ToolbarSettings

    Gets the toolbar settings.

    Methods

    GetControlDetails()

    Declaration
    protected override object GetControlDetails()
    Returns
    Type Description
    System.Object
    Overrides
    EJTagHelper.GetControlDetails()

    ShouldSerializeLocale()

    Gets or sets a value that indicates whether the locale should serialize.

    Declaration
    public bool ShouldSerializeLocale()
    Returns
    Type Description
    System.Boolean

    The method returns a Boolean.

    ShouldSerializeReportDataExtensions()

    Gets or sets a value that indicates whether the report data extensions should serialize.

    Declaration
    public bool ShouldSerializeReportDataExtensions()
    Returns
    Type Description
    System.Boolean

    The method returns a Boolean value.

    ShouldSerializeReportItemExtensions()

    Gets or sets a value that indicates whether the report item extensions should serialize.

    Declaration
    public bool ShouldSerializeReportItemExtensions()
    Returns
    Type Description
    System.Boolean

    The method returns a Boolean.

    ShouldSerializeReportpath()

    Gets or sets a value that indicates whether the reportpath should serialize.

    Declaration
    public bool ShouldSerializeReportpath()
    Returns
    Type Description
    System.Boolean

    The method returns a Boolean.

    ShouldSerializeReportServerUrl()

    Gets or sets a value that indicates whether the reportServerUrl should serialize.

    Declaration
    public bool ShouldSerializeReportServerUrl()
    Returns
    Type Description
    System.Boolean

    The method returns a Boolean.

    ShouldSerializeServiceAuthorizationToken()

    Gets or sets a value that indicates whether the serviceAuthorizationToken should serialize.

    Declaration
    public bool ShouldSerializeServiceAuthorizationToken()
    Returns
    Type Description
    System.Boolean

    The method returns a Boolean.

    ShouldSerializeServiceUrl()

    Gets or sets a value that indicates whether the serviceUrl should serialize.

    Declaration
    public bool ShouldSerializeServiceUrl()
    Returns
    Type Description
    System.Boolean

    The method returns a Boolean.

    ShouldSerializeToolbar()

    Gets or sets a value that indicates whether the toolbar should serialize.

    Declaration
    public bool ShouldSerializeToolbar()
    Returns
    Type Description
    System.Boolean

    The method returns a Boolean value.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved