Class KanbanCardSettings
Defines the Kanban card related settings such as header field, content field, template, show or hide header, and single or multiple selection.
Inherited Members
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class KanbanCardSettings : SfDataBoundComponent
Constructors
KanbanCardSettings()
Declaration
public KanbanCardSettings()
Properties
ChildContent
Defines the child content.
Declaration
public RenderFragment ChildContent { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.RenderFragment |
ContentField
Defines the card content text.
Declaration
public string ContentField { get; set; }
Property Value
Type |
---|
System.String |
FooterCssField
Defines the card icons.
Declaration
public string FooterCssField { get; set; }
Property Value
Type |
---|
System.String |
GrabberField
Defines the card color.
Declaration
public string GrabberField { get; set; }
Property Value
Type |
---|
System.String |
HeaderField
Defines the card header text.
Declaration
public string HeaderField { get; set; }
Property Value
Type |
---|
System.String |
SelectionType
It defines the card selection type, which accepts either of the following values. Single Multiple None.
Declaration
public SelectionType SelectionType { get; set; }
Property Value
Type |
---|
SelectionType |
ShowHeader
Show or hide the card header.
Declaration
public bool ShowHeader { get; set; }
Property Value
Type |
---|
System.Boolean |
TagsField
Defines the card content labels.
Declaration
public string TagsField { get; set; }
Property Value
Type |
---|
System.String |
Template
Defines the card template.
Declaration
public RenderFragment<object> Template { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.RenderFragment<System.Object> |
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Type | Name | Description |
---|---|---|
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder | __builder |
OnInitializedAsync()
Method invoked when the component is ready to start.
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |