Hello,
I'm looking into making a kendoTooltip object keyboard accessible in Kendo for Angular:
I see in the documentation for jQuery here that the tooltip has a showOn property which can take values of type "mouseenter", "click", or "focus". I'd like to have the equivalent of "mouseenter focus" as the value. However, the supported values seem different in Angular: my options instead seem to be "click", "hover", or "none". Is there a way to give this object a 'focus'-type value in Angular?
Hello,
please see this example: https://dojo.telerik.com/vTWFOkNt
I have stacked columns chart. BUt in some situations I found, that chart is not displayed ok based on values. It happens when only 1 serie is rendered and values are not ordered.
Why this happens? Is it bug? Or how to setup chart properly to show user all values with correct stacking ratio?
Regards
René
We have a Grid set to popup edit mode, and Kendo internally calls editRow() when we click on an "Edit" command button we define in one of the columns.. As part of our row editing process, we would like to refresh the row's data in the datasource from the remote server, so that the user is editing fresh, current data for the row. It appears that even the beforeEdit event is too late for this, as the popup editor has already used the existing values in the data record, and getting the datasource to reload the data item the row uses won't affect the values displayed in the editor (although the datasource is indeed updated). So what we did in our beforeEdit() handler was something like this:
This may be a terrible hack, but it seemed to work with Kendo 2021.2.526. When we replaced that with Kendo 2025.1.227, it fails. We get a Javascript error like this:
Uncaught TypeError: Cannot read properties of undefined (reading 'parent')
at init.editRow (kendo.2025.1.227.all.min.js:9:1918996)
at init._editCommandClick (kendo.2025.1.227.all.min.js:9:1911991)
at HTMLDivElement.dispatch (jquery.min.js:3:12444)
at r.handle (jquery.min.js:3:9173)
and the editRow line is something like this:
a = r.editView ? r.editView.element : "popup" === s ? r._editContainer.parent() : r._editContainer,
where "r" is effectively "this", the grid widget. It looks like when Kendo does its own editRow() call, it may be stashing the popup window as "_editContainer", and does a .parent() dereference to get the grid container that it would get directly in the non-popup case. But when we make our own editGrid() call, either the context is slightly different and the Kendo code doesn't stash the popup window, or there's some extra state being kept in the newer Kendo code that isn't cleared by our preventDefault() call, and is still there when we make our own editRow() call before our beforeEdit handler returns control to Kendo, or something like that.
We could try either using our own button (which we would probably have to style to match the classes Kendo give the edit button it produces itself), which could call editRow(), or maybe attach a click handler to Kendo's button to do our data refresh before things continue on to Kendo's click handling, so that we get in there before Kendo calls editRow(). But I was wondering if there was some clean way of hooking into the row edit process to refresh our data before the popup window looks at it?
Hi,
In our project, we are using Kendo Grid for data display and filtering. When performing a text search, I can set columns.filterable.ignoreCase to true for the search to be case-insensitive. Is there a way to make the search also diacritics-insensitive with a custom function? Thanks in advance :)
Using scroll tabs arrows causes page reload on spreadsheet. This is the two arrows at the bottom right on the spreadsheet control when tabs go off the screen.
This only seems to happen when the spreadsheet is between <form></form> elements. Take these out and it works as expected.
See this dojo: https://dojo.telerik.com/HXscWjdD/2
Did a setting change? This did not happen in earlier versions.
Hi Team,
Found this issue with NumericTextBox. Please consider dojo: https://dojo.telerik.com/RSXrPCFH
When KendoValidator is initialised with validateOnBlur:false, KendoNumericTextBox looses .k-invalid class and associated style when moving out of field.
Try this:
1. Click button "Validate fields".
2. The 2 fields get red.
3. Click into second field (numeric) and then move out the field. The field looses its invalid status!
4. The other field (text) keeps its invalid status when doing the same.
Please advise.
Regards,
Laurent.
Hi,
I am trying to use the Kendo TileLayout in JQuery, and I need to add some custom class to the tile body and tile header for some specific Tiles.
I can see that with the TileLayout in React, we can do this just by setting the className. But I can't find a similar thing in the document for the JQuery.
Could you please help me with this?
Thanks.