The loading spinner does not appear on the first data binding.
Reproduction :
https://dojo.telerik.com/iKoyESUV/7
The loading spinner does not appear on the first data binding.
The loading spinner should appear on the first data binding too.
When ServerOperation(true) is set, the paging is not applied after creating a new record.
https://demos.telerik.com/aspnet-mvc/listview/editing
PageSize is set to 4, but after inserting a new item, it appears along with the other items.
https://demos.telerik.com/kendo-ui/listview/editing
When a new item is created, remove the last one from the current page.
The Kendo Scaffolder is no longer available in the Add New Scaffolded Item dialog.
The Kendo Scaffolder works as intended.
Describe the bug
Column headers do not resize properly in IE11 when scrollable is set to false. Regression introduced in 2021.3.914.
To reproduce
Steps to reproduce the behavior:
The column headers are squished to the left side.
Expected behavior
Columns headers must have the same width as the respective columns.
Workaround:
.k-ie .k-grid-header {
display: table-header-group;
}
Affected package (please remove the unneeded items)
Affected suites (please remove the unneeded items)
Affected browsers (please remove the unneeded items)
Build system information (please remove the unneeded items)
The Kendo UI Grid's Toolbar Template UI for ASP.NET MVC documentation displays an approach used for UI for ASP.NET Core. The ClientTemplate and ClientTemplateID are not available for UI for ASP.NET MVC.
Please try the approach used in the documentation. It is not available for UI for ASP.NET MVC.
Either include the approach for UI for ASP.NET MVC, or modify the documentation.
### Bug report
When a custom class or styles are set through the HtmlAttributes() method, they are not applied to the Stepper's element.
### Reproduction of the problem
1. Set a class in the Stepper's HtmlAttributes, e.g.,
```
.HtmlAttributes(new { @class = "test" })
```
2. Add a custom style in the Stepper's HtmlAttributes, e.g.,
```
.HtmlAttributes(new { style = "color: blue;" })
```
### Current behavior
The custom class/styles are not applied to the Stepper's wrapping element.
### Expected/desired behavior
The custom classes and styles are applied to the Stepper.
### Environment
* **Kendo UI version: 2022.1.412
* **jQuery version: 1.12.4
* **Browser: [all]
### Bug report
When a custom class or styles are set through the HtmlAttributes() method, they are not applied to the Stepper's element.
### Reproduction of the problem
1. Set a class in the Stepper's HtmlAttributes, e.g.,
```
.HtmlAttributes(new { @class = "test" })
```
2. Add a custom style in the Stepper's HtmlAttributes, e.g.,
```
.HtmlAttributes(new { style = "color: blue;" })
```
### Current behavior
The custom class/styles are not applied to the Stepper's wrapping element.
### Expected/desired behavior
The custom classes and styles are applied to the Stepper.
### Environment
* **Kendo UI version: 2022.1.412
* **jQuery version: 1.12.4
* **Browser: [all]
.HtmlAttributes(new { @class = "test" })
The custom class is not applied to the TimeLine's wrapping element.
The custom class is applied to the TimeLine along with the pre-defined Kendo classes.
Regression introduced in R3 2021. Reproducible with the LESS and the SASS themes.
Dojo example: https://dojo.telerik.com/icUZasIF/2
The k-timeline-circle and the k-timeline-date-wrap elements are misaligned. The dates are displayed slightly below the level of the Timeline circles.
Dates and circles are aligned.
Reproducible with a Grid nested in the content of the tab, or loaded in the tab through AJAX.
Dojo example: https://dojo.telerik.com/eJuHaTan
The rows cannot be reordered.
The rows can be reordered.
Describe the bug
When boostrap.min.css is loaded on the page, the positioning of the Gantt tasks within the task rows is incorrect. The task are not centered and start overlapping the next row. Additionally, misalignment between the rows in the timeline and the treelist appears.
To reproduce
Steps to reproduce the behavior:
https://dojo.telerik.com/AYeWOkIX
The misalignment increases with each next row, so it becomes more evident, if you scroll down the view.
Expected behavior
Tasks are centered within their row. Timeline and treelist rows are aligned.
Affected package (please remove the unneeded items)
Affected suites (please remove the unneeded items)
Affected browsers (please remove the unneeded items)
Build system information (please remove the unneeded items)
Additional context
Add any other context about the bug.
If I specify "SortMode.Mixed" for a Grid's "SortMode" (via the .Sortable fluent method), the sort mode in the JavaScript initializer is set to "multiple" instead. This can even be seen on the MVC Demo page here: https://demos.telerik.com/aspnet-mvc/grid/sorting (the "mixed" demo behaves just like "multiple").
In the Kendo MVC source code for 2022.1.301, the GridSortableSettings.Serialize method appears to use the following logic:
if (SortMode != GridSortMode.SingleColumn)
{
json["mode"] = "multiple";
}
Reproducible in:
https://demos.telerik.com/aspnet-mvc/grid/editing-inline
and
https://demos.telerik.com/aspnet-core/grid/editing-inline
The input does not have a title attribute or label.
The input should either have a title attribute, like in the Kendo UI for jQuery Grid, or since we use a TextBox component as editor in MVC and Core, a label should be rendered.
I've been using the "Change" event to handle a Single Row Selection grid as that seems to be the event to use to determine when the user selects a row.
I just tried adding "persistSelection(true)" to my grid but it seems to be triggering a change event when I switch to another page and back to the previous page, or do an external $(this).data('kendoGrid').dataSource.read() on the grid.
How can I only get a change event when the USER selects a row, not the persistedSelection selecting the row?
Or at least detetect where it came from it in my Change event?
Thanks,
Bryan
Regression introduced in R1 2022. Reproducible only with the LESS themes.
Dojo example: https://dojo.telerik.com/UQOniRab
The option label item's height is very small and no hover/select styles are applied to it. When the option label has some text, its height is ok, but again no hover/select styles are applied.
The option label item's appearance should match that of the other items.
@(Html.Kendo().CheckBoxFor(m => m.IsAvailable).Label(string.Empty))
[Display(Name = "test")]
public bool IsAvailable { get; set; }
Passing string.Empty or "" to the Label option has no effect and a label with text "test" is displayed.
The text of the DisplayName annotation should not be rendered as label, when an empty string is passed as a parameter to the Label option.
Pop-up for adding a new row does not appear when a filter is applied.
A new blank record is added to the DataSource but the pop-up for inserting a record does not appear.
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