Class
FormGroupRendererTemplateContext

Provides context data for custom form group templates when using Template. Contains the child form elements belonging to the specific group being rendered with custom layout.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class FormGroupRendererTemplateContext

Inheritance: objectFormGroupRendererTemplateContext

Constructors

FormGroupRendererTemplateContext()

Declaration

cs-api-definition
public FormGroupRendererTemplateContext()

Properties

Items

Gets the collection of form elements (items and nested groups) that belong to this specific form group. Items maintain their hierarchical structure as defined within the group's ChildContent. Each element can be either an IFormItem for individual fields or a nested IFormGroup for sub-groups. Use TelerikFormItemRenderer for individual fields and TelerikFormGroupRenderer for nested groups to maintain full functionality.

Declaration

cs-api-definition
public List<IFormItemBase> Items { get; }

Property Value

List<IFormItemBase>