Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

ShowNavigationItemController.SynchronizeItemsWithSecurityMode Property

Specifies whether all navigation items or the selected item must be synchronized with the security permissions when an end-user clicks an item.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v20.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

[DefaultValue(SynchronizeItemsWithSecurityMode.SelectedItem)]
[Browsable(false)]
public SynchronizeItemsWithSecurityMode SynchronizeItemsWithSecurityMode { get; set; }

Property Value

Type Default Description
DevExpress.ExpressApp.SystemModule.SynchronizeItemsWithSecurityMode **SelectedItem**

A SynchronizeItemsWithSecurityMode enumeration value specifying the mode in which to check security permissions for the current user.

Remarks

When an end-user clicks a navigation item, the ShowNavigationItemController checks whether they has permissions to navigate to and read the data displayed by this item. Dependent on the result, the item is enabled/disabled, if it has been active; or activated, if it has been inactive. You can set how many items must be checked when an end-user clicks an item. Set this property to SelectedItem, if you want only the selected item to be checked. Set this property to AllItems, if you want all items to be checked each time an end-user clicks an item. By default, this property is set to SelectedItem.

See Also