It would be beneficial if the Grid exposes a built-in option for explicitly setting an arrow indicator for selected rows similar to the following:
Feature request for adding a custom class to the label text for the items in the Telerik UI Chart.
The desired result is the labels to receive and apply CSS styles.
The TreeList doesn't have a NoRecords , nor NoRecordsTemplate configuration. As a result the content of the .k-grid-norecords-template element of the Component cannot be evaluated with Kendo Templates on the client-side.
Please implement these methods for the TreeList as well.
By design, the axisDefaults configuration of the Kendo UI for jQuery Chart allows you to set the rotation of the labels to "auto":
axisDefaults: {
...
labels: {
rotation: "auto"
},
}
//OR
axisDefaults: {
...
labels: {
rotation: {
angle: "auto"
}
},
}
At this stage, when using Telerik UI for ASP.NET Core Chart, the Rotation() method does not accept a string value. Also, the Angle() option accepts only a double value. Is it possible to implement an additional overload that allows setting the labels rotation to "auto"?
For example:
.AxisDefaults(ad => ad.Labels(l => l.Rotation("auto")))
Or
.AxisDefaults(ad => ad.Labels(l => l.Rotation(r => r.Angle("auto"))))
Similar to #5759. The issue is reproducible with mobile mode and vertical grouping enabled.
Dojo example: https://dojo.telerik.com/enaNotaZ/2
Misalignment between the group cells (e.g., Bob) and the day cells.
Properly aligned cells.
In the Scheduler's Adaptive Rendering mode when the Month view is selected and an event end spans more than a day and ends in 00:00:00 an additional element is rendered for the event.
In the Month View of the Scheduler's when Adaptive Rendering is enabled the events should span the correct amount of days.
When a Date is already present in the DateTimePicker and the date parts are focused with a mouse click the digits for the year part are cut off.
Reproducable in this Dojo.
Screen recording of the issue.
When both UI for ASP.NET MVC and UI for ASP.NET Core Visual Studio extensions are installed and only UI for ASP.NET Core project is loaded, the notification for new version is shown for UI for ASP.NET MVC.
I noticed that in version 2023.2.606 you introduced some Date Editing enhancements for the DateInput component, like:
but these options aren't available for other DatePickers that implement the DateInput internally:
@(Html.Kendo().DateTimePicker()
.Name("datepicker")
.DateInput()
)
The Kendo React suite has a Search and Replace functionality. We need to use that in ASP.NET Core.
Please also implement it in Telerik UI for ASP.NET Core.
I noticed that the WebForms Telerik suite supports both column resizing and column templates.
Please implement these functionalities for Telerik ui for ASP.NET Core as well.
When no datasource is bound, the slot titles and resource group names are not shown, despite being known. After binding to a datasource, they get set immediately. This leads to a glitchy user experience, as there is an empty table with no text whatsoever, as long no databinding is triggeredThe resource descriptions and slot header texts should be set independently from the data binding. The behavior can be observed in the attached example.
Regards, Frieder
Is it possible to add an "attributes" option to the editable.window configuration that allows the addition of HTML attributes to the window?
For example:
//HtmlHelper Grid
@(Html.Kendo().Grid<OrderViewModel>()
.Name("grid")
...
.Editable(editable => editable.Mode(GridEditMode.PopUp).Window(wnd => wnd.HtmlAttributes(new { @class= "my-custom-window" })))
)
//Kendo UI for jQuery Grid
$("#grid").kendoGrid({
...
editable: {
mode: "popup",
window: {
attributes: {
"class": "my-custom-window"
}
}
}
});
Is it possible to implement binding of TimeSpan property to TimeDurationPicker editor?
For example:
@model TimeSpan? @(Html.Kendo().TimeDurationPickerFor(m => m))
Is it possible to add an option similar to the Data() method that can be used to pass additional parameters to the remote endpoint through the Read request of the PDFViewer?
For example:
@(Html.Kendo().PDFViewer().Name("pdfviewer")
.DplProcessing(dpl => {
dpl.Read(r => r.Url(Url.Action("GetInitialPdf", "PdfViewer")).Data("additionalParams"));
...
})
)
<script>
function additionalParams() {
return {
param1: "test"
}
}
</script>