Completed
Last Updated: 15 Mar 2022 06:37 by ADMIN
Release 2022.R1.SP.next

Bug report

Pop-up for adding a new row does not appear when a filter is applied.

Reproduction of the problem

  1. Apply a filter.
  2. Try to add a new row.
    https://dojo.telerik.com/aNaCUkah/2

Current behavior

A new blank record is added to the DataSource but the pop-up for inserting a record does not appear.

Expected/desired behavior

When a filter is applied and click on the insertion button, the Pop-up should appear like when using Grid
https://dojo.telerik.com/EFigUGIX/2

Environment

  • Kendo UI version: 2022.1.301
  • Browser: [all]
Completed
Last Updated: 25 May 2022 07:13 by ADMIN
Release 2022.R1
Created by: Sean
Comments: 0
Category: TreeList
Type: Bug Report
1

Bug report

Regression introduced in R3 2021 SP2.

Reproduction of the problem

Dojo example: https://dojo.telerik.com/IKIhazAm

  1. Open the browser devtools console.
  2. Reorder the columns of the TreeList

Current behavior

A js exception is thrown:

Uncaught TypeError: Cannot read properties of undefined (reading 'lockable')

Expected/desired behavior

The columns are reordered and no exceptions are thrown.

Environment

  • Kendo UI version: 2021.3.1207
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 31 Mar 2021 10:52 by ADMIN
Release 2020.R3
Created by: Martin
Comments: 2
Category: TreeList
Type: Bug Report
2

Dear support,

Your documentation clearly states that there is an option to export all pages:

Exporting All Data

By default, the Telerik UI TreeList for ASP.NET MVC exports only the current page of data. To export all pages, set the AllPages option to true.

@(Html.Kendo().TreeList<Kendo.Mvc.Examples.Models.TreeList.EmployeeDirectoryModel>() .Name("treelist") .Toolbar(tools => tools.Excel()) .Excel(excel => excel.AllPages(true)) .DataSource(dataSource => dataSource .Read(read => read.Action("All", "EmployeeDirectory")) ) )

 

However, when I try this, AllPages gives a compiler error:

Severity Code Description Project File Line Suppression State
Error CS1061 'TreeListExcelSettingsBuilder<dynamic>' does not contain a definition for 'AllPages' and no accessible extension method 'AllPages' accepting a first argument of type 'TreeListExcelSettingsBuilder<dynamic>' could be found (are you missing a using directive or an assembly reference?) StarPMWeb C:\TFS2015\StarPMWeb\StarPMWeb.root\MAIN\Enhancements\WIPProvisions_MR\StarPMWeb\Areas\WIPPROVISIONS\Views\ParentChildPeriod\_RenderParentChildEditPeriodGrid.cshtml 706 Active

Why is this happening? Is your documentation just wrong?

I am using version 2020.1.114

If this AllPages option is not currently implemented, can you please add this to the roadmap? It seems to be a strange omission.

Thanks.