Back to Devexpress

DxFormLayoutItem.CaptionFor Property

blazor-devexpress-dot-blazor-dot-dxformlayoutitem-2f290d60.md

latest2.3 KB
Original Source

DxFormLayoutItem.CaptionFor Property

Specifies a unique identifier of the layout item’s caption and allows you to associate the caption with a component in the template.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(null)]
[Parameter]
public string CaptionFor { get; set; }

Property Value

TypeDefaultDescription
Stringnull

A unique identifier.

|

Remarks

Use the CaptionFor property to associate a layout item’s caption with a component in the layout item’s template.

  1. Specify the layout item’s Caption property. A browser renders the caption as an HTML label element.
  2. Set the layout item’s CaptionFor property to a unique value. This value is assigned to the label’s for attribute. Note that this value is case-sensitive, should contain at least one character, and should not contain whitespaces (spases, tabs, etc.)
  3. Set the ID of a component in the template to the same value as the item’s CaptionFor.

You can click the associated label to focus/activate the input element.

Note

If you do not specify the CaptionFor property, the Form Layout generates a random identifier (Guid ) and assings it to the label’s for attribute and to the id property of the first component in the template.

See Also

DxFormLayoutItem Class

DxFormLayoutItem Members

DevExpress.Blazor Namespace