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

IPropertyGridSettings Interface

An object that contains properties to customize the Properties Panel.

#Declaration

TypeScript
export interface IPropertyGridSettings

#Remarks

The IPropertyGridSettings object is used to set the PropertyGrid property value.

#Properties

#QuickActionsVisible Property

Specifies whether Quick Actions are visible in the Properties Panel.

#Declaration

TypeScript
QuickActionsVisible: DevExpress.Analytics.Internal.IGlobalSubscribableValue<boolean>

#Property Value

Type Description
IGlobalSubscribableValue<boolean>

true to show Quick Actions in the Properties Panel; otherwise,false

#Remarks

The default property’s value is false. Quick Actions are not visible in the Properties Panel.

You can access an element’s actions in its context menu. To do this, right-click an element on the Design Surface, Report Explorer, or Field List:

Web Report Designer - Report Context Menu

To show Quick Actions in the Properties Panel, set the property to true:

cshtml
<script>
    function onBeforeRender(s, e) {
        DevExpress.Reporting.Designer.Settings.PropertyGrid.QuickActionsVisible(true);
    }
</script>

@{
    var designerRender = Html.DevExpress().ReportDesigner("reportDesigner")
        .Height("100%")
        .ClientSideEvents(configure => configure.BeforeRender("onBeforeRender"))
        .Bind(Model);
    @designerRender.RenderHtml()
}

Web Report Designer - Properties Panel with Quick Actions

#TaskGroupVisible Property

Specifies whether the Task group is visible in the Properties Panel.

#Declaration

TypeScript
TaskGroupVisible: DevExpress.Analytics.Internal.IGlobalSubscribableValue<boolean>

#Property Value

Type Description
IGlobalSubscribableValue<boolean>

true to show the Task group in the Properties Panel; otherwise,false.

#Remarks

The default property’s value is true. The Task group is visible in the Properties Panel for the selected report element:

Web Report Designer - Properties Panel with Task Group

The properties from the Task group are duplicated in an element’s smart tag panel (except for complex properties).

Set the property to false to hide the Task group from the Properties Panel:

cshtml
<script>
    function onBeforeRender(s, e) {
        DevExpress.Reporting.Designer.Settings.PropertyGrid.TaskGroupVisible(false);
    }
</script>

@{
    var designerRender = Html.DevExpress().ReportDesigner("reportDesigner")
        .Height("100%")
        .ClientSideEvents(configure => configure.BeforeRender("onBeforeRender"))
        .Bind(Model);
    @designerRender.RenderHtml()
}

Web Report Designer - Properties Panel without Task Group