-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Closed
Maintenance
Copy link
Labels
BugC: GridFP: CompletedSync status with associated Feedback ItemSync status with associated Feedback ItemRegressionBroken functionality which was working previouslyBroken functionality which was working previouslyS: Wrappers (ASP.NET Core)SEV: High
Milestone
Description
Bug report
Dynamic Grid produces a RunTimeException when the Filterable() configuration is enabled
Reproduction of the problem
- Configure the dynamic Grid based on the following example.
- Set the .Filterable() API configuration of the Grid.
- Notice that the application throws a
System.ArgumentNullException: Value cannot be null.
Example
@model System.Data.DataTable
@(Html.Kendo().Grid<dynamic>()
.Name("gridItem")
.Columns(columns =>
{
foreach (System.Data.DataColumn dcolumn in Model.Columns)
{
columns.Bound(dcolumn.ColumnName).Title(dcolumn.Caption);
}
})
...
.Filterable()
)
The aforementioned declaration will work in the previous 2024.3.1015 version of the suite.
Current behavior
The Grid makes the application throw a runtime error.
Expected/desired behavior
The Grid makes the application should not throw a runtime error.
Environment
- Kendo UI version: 2024.4.1112
- Browser: [all]
Metadata
Metadata
Assignees
Labels
BugC: GridFP: CompletedSync status with associated Feedback ItemSync status with associated Feedback ItemRegressionBroken functionality which was working previouslyBroken functionality which was working previouslyS: Wrappers (ASP.NET Core)SEV: High