-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
BugC: TaskBoardFP: CompletedSync status with associated Feedback ItemSync status with associated Feedback ItemS: Wrappers (ASP.NET Core)S: Wrappers (ASP.NET MVC)SEV: LowjQuery
Milestone
Description
Bug report
The built-in search tool does not render when it is defined through the Toolbar() configuration. By default, it renders as expected.
Reproduction of the problem
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Toolbar(t => t.Items(items =>
{
items.Add().Type("TaskBoardSearch").Command("SearchCommand").Name("search").Text("Search").Icon("search");
}))
...
)
REPL sample for reproduction:
https://netcorerepl.telerik.com/QRaTOpbm101bVWAv11
Expected/desired behavior
The search tool should be rendered when it is set up through the Toolbar() configuration.
A possible workaround:
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Toolbar(t => t.Items(items =>
{
items.Add().Name("search");
}))
...
)
Environment
- **Telerik UI for ASP.NET Core version: 2023.1.117
- **Browser: [all]
Metadata
Metadata
Assignees
Labels
BugC: TaskBoardFP: CompletedSync status with associated Feedback ItemSync status with associated Feedback ItemS: Wrappers (ASP.NET Core)S: Wrappers (ASP.NET MVC)SEV: LowjQuery