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

DxComponent.Id Property

Specifies the component’s unique identifier.

Namespace: DevExpress.Blazor.Base

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[Parameter]
public virtual string Id { get; set; }

#Property Value

Type Description
String

The component identifier.

#Remarks

Use the Id property to specify the id attribute of a component in its rendered HTML markup:

Razor
<DxPopup @bind-Visible="@PopupVisible"
         Id="popup-msg" 
         HeaderText="Header"></DxPopup>

Component id

See Also