1. Is it hard to understand the version numbers of our releases? If yes, what makes them hard to understand them?
2. Would semantic versioning (SemVer) of our releases make it easier to understand our version numbers and what's behind them?
3. If we go with SemVer, we might need to start with version 3000.0.0 as we currently use 2022.x.x. Please share your thoughts about this approach and ideas for what number versioning would work best for you.
I am using autoFitColumn function on a Telerik UI for MVC grid to show the content of all cells as per the below article.
https://docs.telerik.com/aspnet-mvc/knowledge-base/grid-autofit-all-columns-width
This works if the grid's display is not none. However, there are three tabs on the page, each containing a grid. Only the opened grid has correct column widths. Other grids have minimum column widths. This is unless the user manually opens each tab quickly during data load.
I tried using Telerik's TabStrip at first, but the grid always has minimum column widths when using autoFitColumns, even on the first tab. The goal was to put a Grid inside each tab of the TabStrip. Currently, I am using custom built tabs.
My current solution to this problem is to set the "hidden" style of each grid to:
position: absolute;
top: -9999px;
left: -9999px;
Is there a better solution?
I am using a Kendo.Filter object like the following to filter results in a Kendo Grid:
@(Html.Kendo().Filter<CustomPersonClass>()
.Name("personFilter")
.DataSource("peopleDS")
.ApplyButton(false)
.Fields(f =>
{
f.Add(p => p.LastName).Label("Last Name");
f.Add(p => p.FirstName).Label("First Name");
f.Add(p => p.MiddleName).Label("Middle Name"); f.Add(p => p.StartDate).Label("Start Date").Operators(o => o.Date(d => d.Eq("Is equal to").Gte("Greater than equal").Lte("Less than equal")));
})
)
I have helper code to handle the toolbar in my Kendo Grid like the following, :
@helper ToolbarTemplate()
{
<button class="k-button k-button-solid k-button-solid-base" id="applyFilter"><span class="k-icon k-i-filter"></span>Apply Filter</button>
<button class="k-button k-button-solid k-button-solid-base" id="clearFilter">Reset</button>
<button class="k-button k-grid-excel k-button-solid k-button-solid-base"><span class="k-icon k-i-excel"></span>Export to Excel</button>
}
I also have some JavaScript in a function to apply the filter when the Apply Filter button is clicked, as seen here:
$("#applyFilter").click(function (e) { //e.preventDefault(); var myFilter = $("#personFilter").getKendoFilter(); localStorage["kendo-person-filter-options"] = kendo.stringify(myFilter.getOptions().expression); myFilter.applyFilter(); });
The problem I am having is if I enter an invalid Leap Year date (e.g. 2/29/2003, since 2023 didn't have a February 29th), I get no data back; however, if I enter a valid Leap Year (e.g. 2/29/2004), my Kendo Grid will show data. Is there a way to validate the date that is being entered manually into a DatePicker field used for filtering? That is, if I use the DatePicker, it will not show me 2/29/2003 as an option, but if I type in 2/29/2003 and click Apply Filter, it doesn't throw any kind of error about 2/29/2003 being invalid.
Hi,
we upgraded a project of ours from 2022.2.510 to 2024.4.1112, and expectedly our icons aren't working anymore, for example:
<i class="k-icon k-i-user"></i>
The following articles suggest, that it is possible to continue using font icons instead of svg icons:
But we weren't able to get it to work. Is this still supported, and do we need to do sth. else?
(Besides upgrading the project through NuGet, we also installed the packages for SVGIcons and FontIcons from Telerik...)
Kind regards.
I upgraded my application to 2024.4.1112 and now my fonts are small and some of my buttons are left justified instead of right justified.
I am including before and after pictures.
Can someone assist with this issue?
Thanks.
Hi,
I have a Kendo grid as below. On Click of a custom toolbar button(Edit) I want to enable all the rows of the grid.
1. When the user clicks on Edit button it should enable all the rows to edit mode.
2. The Edit button text should change to Update on click of Edit button.
3. Then user change the rows and select the checkbox, and click on the update button, then only the selected checked rows will send to server for update.
Please help me find the above requirements solutions.
Dear Forum,
please help me. So i want to upgrade an old Kendo MVC application, Kendo version 2016.2.504 MVC. I downloaded the newest 2024.4.1112.Trial before i pay the new. I want to see what is working and what is not working. After the updating (Kendo.Mvc.dll) and the static JS and CSS comes this error, when i started the software the error comes the CSHTML side:
System.NullReferenceException: 'Object reference not set to an instance of an object.'
at Kendo.Mvc.Licensing.GetLicenseMessage()
at Kendo.Mvc.UI.WidgetBase.WriteTrialMessage(HtmlTextWriter writer)
at Kendo.Mvc.UI.WidgetBase.ToHtmlString()
at System.Web.WebPages.WebPageBase.Write(Object value)
Why? What can I do with this error? How to find the right solution. I tested this newest version of Kendo.MVC.dll and JS and CSS with a new empty ASP MVC 4.8 project and working.
Hi,
My requirement is on click of any delete button it should delete all the rows based on Allocation Date.
Suppose if the user clicks on 1st row delete button then for the Allocation Date 10/31/2024, it has two records so it should delete the first two rows.
The below method calls on click of delete button. The server side code deletes the first two rows based on the Allocation Date , but the
below DeleteRecord method only remove one row and sync the grid. It won't remove the 2nd row till we have to refresh the browser.
function DeleteRecord(e) {
var grid = '';
var tr = $(e.target).closest("tr"); //get the row for deletion
var data = this.dataItem(tr);
var confirmDialog = $('<div />').kendoConfirm({
content: "Are you sure want to delete this record? This will delete all records for the selected Allocation Date",
title: "Please confirm"
}).data('kendoConfirm').open();
confirmDialog.result.then(function () {
grid = $("#TLPCurveAllocationsGrid").data("kendoGrid");
grid.dataSource.remove(data); //prepare a "destroy" request
grid.dataSource.sync(); //actually send the request (might be ommited if the autoSync option is enabled in the dataSource)
$("#TLPCurveAllocationsGrid").data("kendoGrid").dataSource.read();
}, function () {
//do nothing
});
}
EditorImageBrowserController in Q1 2024 release of Kendo UI, we're seeking guidance on the best approach to migrate our existing application. Could you please provide specific recommendations on how to achieve image management (read, upload and etc) in image browser (from Editor) using the latest Kendo UI components and best practices?