Completed
Last Updated: 31 Aug 2023 13:30 by ADMIN
Release R3.2023-Increment.3(11.Oct.2023)
Jerome
Created on: 05 May 2023 12:17
Category: TaskBoard
Type: Bug Report
0
The TaskBoard built-in search tool is not rendered

### 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]

0 comments