Class KanbanSwimlaneSettings
Defines the swimlane settings to Kanban board such as key field, text field, template, allow drag-and-drop, show or hide an empty row, show or hide items count, and more.
Inherited Members
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class KanbanSwimlaneSettings : SfDataBoundComponent
Constructors
KanbanSwimlaneSettings()
Declaration
public KanbanSwimlaneSettings()
Properties
AllowDragAndDrop
Enable or disable the card drag and drop actions.
Declaration
public bool AllowDragAndDrop { get; set; }
Property Value
Type |
---|
System.Boolean |
ChildContent
Defines the child content.
Declaration
public RenderFragment ChildContent { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.RenderFragment |
EnableFrozenRows
Enable or disable freeze swimlane row
Declaration
public bool EnableFrozenRows { get; set; }
Property Value
Type |
---|
System.Boolean |
KeyField
Defines the swimlane key field.
Declaration
public string KeyField { get; set; }
Property Value
Type |
---|
System.String |
ShowEmptyRow
Enable or disable empty swimlane.
Declaration
public bool ShowEmptyRow { get; set; }
Property Value
Type |
---|
System.Boolean |
ShowItemCount
Enable or disable items count.
Declaration
public bool ShowItemCount { get; set; }
Property Value
Type |
---|
System.Boolean |
SortDirection
Sort the swimlane resources. The possible values are: Ascending Descending.
Declaration
public SortDirection SortDirection { get; set; }
Property Value
Type |
---|
SortDirection |
Template
Defines the swimlane row template.
Declaration
public RenderFragment<SwimlaneSettingsModel> Template { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.RenderFragment<SwimlaneSettingsModel> |
TextField
Defines the swimlane header text field.
Declaration
public string TextField { get; set; }
Property Value
Type |
---|
System.String |
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Type | Name | Description |
---|---|---|
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder | __builder |
OnAfterRenderAsync(Boolean)
Method invoked after each time the component has been rendered.
Declaration
protected override Task OnAfterRenderAsync(bool firstRender)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | firstRender | Set to true if this is the first time OnAfterRender(Boolean) has been invoked. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |
Overrides
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. |
Overrides
OnParametersSetAsync()
Method invoked when the component has received parameters from its parent.
Declaration
protected override Task OnParametersSetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |