Class TelerikFormGroupRenderer
Defines the TelerikFormGroupRenderer component.
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TelerikFormGroupRenderer : ComponentBase
Constructors
TelerikFormGroupRenderer()
Declaration
public TelerikFormGroupRenderer()
Properties
Group
Define the FormGroup that will be rendered.
Declaration
public IFormGroup Group { get; set; }
Property Value
IFormGroup
|
Template
Define the render template for the FormGroup. In this tempalte you can use TelerikFormItemRenderer and TelerikFormGroupRenderer tags and customize the form group layout. The context of the template is a FormGroupRendererTemplateContext which contains a list of IFormItemBase items. The items can be of type IFormItem or IFormGroup.
Declaration
public RenderFragment<FormGroupRendererTemplateContext> Template { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment<FormGroupRendererTemplateContext>
|
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder
__builder
|