Skip to main content
.NET 8.0+

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

MyDetailsController.MyDetailsAction Property

Gets a SimpleAction used to invoke the My Details Detail View.

Namespace: DevExpress.ExpressApp.Security

Assembly: DevExpress.ExpressApp.Security.v24.2.dll

#Declaration

public SimpleAction MyDetailsAction { get; }

#Property Value

Type Description
SimpleAction

A SimpleAction object used to invoke the My Details Detail View.

#Remarks

MyDetailsAction represents the SimpleAction Action that allows end-users to invoke the My Details Detail View in an ASP.NET Web Forms application. This Detail View represents the current User details.

MyDetailsAction

MyDetailsController adds the MyDetailsAction Action to the Security Action Container. This Action Container is added to the Default.aspx Template in the ASP.NET Web Forms application version, and also includes the LogoffController.LogoffAction Action.

Note

The MyDetails Action is hidden if the user does not have the Navigate permission for the User object type.

To ascertain why the MyDetails Action is currently deactivated or disabled, use the DiagnosticInfo Action. If you need to change the Action’s “active” or “enabled” state in code, use its ActionBase.Active or ActionBase.Enabled property, respectively.

Information on the MyDetails Action is available in the Application Model‘s ActionDesign node. To access it, use the Model Editor.

See Also