Skip to content

The TaskBoard built-in search tool is not rendered #7328

@kendo-bot

Description

@kendo-bot

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

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions