DxComponent.Id Property
Specifies the component’s unique identifier.
Namespace: DevExpress.Blazor.Base
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[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:
<DxPopup @bind-Visible="@PopupVisible"
Id="popup-msg"
HeaderText="Header"></DxPopup>
See Also