Class RadioGroupComponentAttribute
- Namespace
- Kentico.Xperience.Admin.Base.FormAnnotations
- Assembly
- Kentico.Xperience.Admin.Base.Shared.dll
Indicates that the RadioGroup form component will be used for editing of this property value in the administration interface.
public class RadioGroupComponentAttribute : FormComponentAttribute
- Inheritance
-
objectAttributeRadioGroupComponentAttribute
- Inherited Members
- Extension Methods
Remarks
The underlying property must be of the type 'string'.
Properties
AriaLabel
Label designed to help assistive technology (e.g. screen readers) attach a label to an otherwise anonymous HTML element. This is necessary when no label is provided. However, you can also use it when label is not describing the interactive element properly.
public string AriaLabel { get; set; }
Property Value
- string
Inline
Indicates if options should be displayed inline.
public bool Inline { get; set; }
Property Value
- bool
Options
Data source for radio group options.
public string Options { get; set; }
Property Value
- string
OptionsValueSeparator
String that separates values from text in Options. Default separator is a semicolon (";").
public string OptionsValueSeparator { get; set; }
Property Value
- string