Class KanbanTemplates
Configures the templates for the Kanban board to enable customized rendering and functionality.
Inherited Members
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class KanbanTemplates : SfDataBoundComponent
Remarks
This class is used to define templates for various elements of the Kanban board, thereby allowing custom visual designs and content integration.
Constructors
KanbanTemplates()
Declaration
public KanbanTemplates()
Properties
TooltipTemplate
Gets or sets the template for the tooltip displayed in the Kanban board.
Declaration
public RenderFragment<object> TooltipTemplate { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.RenderFragment<System.Object> | A Microsoft.AspNetCore.Components.RenderFragment<> that defines the layout and content for tooltips associated with Kanban cards. |
Remarks
The tooltip template must include card elements, and you can access the parameters passed to the templates
using an implicit parameter named context
. The context
parameter is of type TValue
.
Methods
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. |