In the following example, the collapse and expand on the gantt tree list is not working: http://dojo.telerik.com/exIWoQeY
What am I missing?
Hi,
In TreeList i am enable Pageable and use dataBound
When fire first dataBound, data-uid is actual
then press refresh button and data-uid not updated in table
https://dojo.telerik.com/IgUwuYAn
In exemple first alert contains dataItem.LastName, then press button refresh, and dataItem not found, alert old data-uid
Hi,
Trying to deploy our Vue application we have noticed that our Vendor chunk is very big - and a large portion of it seems to be Kendo related. Even if we split our vendor file using the code below we create a giant progress file (3.5GB) that needs to be downloaded - and when we uncomment the console.log section - it seems that kendo-ui is the largest portion of the file - and it includes a lot of components (like spreadsheet, for example) that we do not need.
Do you have any suggestions how we limit the kendo components that are distributed when we do 'npm run build' - to just the ones we use?
--
configureWebpack: config => {
config.optimization = {
splitChunks: {
chunks: 'all',
maxInitialRequests: Infinity,
minSize: 0,
cacheGroups: {
vendor: {
test: /[\\/]node_modules[\\/]/,
name (module) {
//get the name. E.g. node_modules/packageName/not/this/part.js
//or node_modules/packageName
let packageName = module.context.match(/[\\/]node_modules[\\/](.*?)([\\/]|$)/)[1];
//console.log(module.context + ' >>> ' + packageName);
//npm package names are URL-safe, but some servers don't like @ symbols
return `npm.${packageName.replace('@', '')}`;
}
}
}
}
};
--
If we add a second line to break progress with:
if (packageName === '@progress') {
packageName = module.context.match(/[\\/]node_modules[\\/](.*?)([\\/]|$)(.*?)([\\/]|$)/)[3];
}
we see that kendo-ui is still gigantic (3.3GB) and contains stuff we do not use, for example spreadsheet, dataviz:
D:\finanda\myfinanda-web\node_modules\@progress\kendo-ui\js >>> kendo-ui
D:\finanda\myfinanda-web\node_modules\@progress\kendo-ui\js >>> kendo-ui
D:\finanda\myfinanda-web\node_modules\@progress\kendo-ui\js >>> kendo-ui
D:\finanda\myfinanda-web\node_modules\@progress\kendo-ui\js\spreadsheet >>> kendo-ui
D:\finanda\myfinanda-web\node_modules\@progress\kendo-ui\js\util >>> kendo-ui
:\finanda\myfinanda-web\node_modules\@progress\kendo-ui\js >>> kendo-ui
D:\finanda\myfinanda-web\node_modules\@progress\kendo-ui\js\dataviz\stock >>> kendo-ui
D:\finanda\myfinanda-web\node_modules\@progress\kendo-ui\js\dataviz\stock >>> kendo-ui
D:\finanda\myfinanda-web\node_modules\@progress\kendo-ui\js >>> kendo-ui
Hello,
I use menu in toolbar as buttons with class k-icon
When i'm focus cursor on menu then icon changed to icon k-loading
Example: https://dojo.telerik.com/UXoGefaj/2
Error ocсure after update to kendo ui version 2019.2.619.

I was able to successfully use the .enable() method to disable an item in the list box on the left. However, it doesn't do the same for the the right side items.
Demo:
https://dojo.telerik.com/eVoZahaX
Any other way to support disabling any items on the right side? We want to pre-load some values on the right side, but not allow them to be moved.
Hi,
Currently am displaying a tooltip in header using the below code. however i want to display a image inside tooltip.
{
field: 'country', title='country', headerTemplate: "<u class='uom fa fa-info-circle fa-lg' data-container='body' title='' data-toggle='tooltip' data-original-title='Golden Standard'></u>"
}
i.e., something like this. but when i try the below code, the html inside the 'data-original-title' is showing as plain text instead of rendering as html.
{
field: 'Country', title='Country', headerTemplate: "<u class='uom fa fa-info-circle fa-lg' data-container='body' title='' data-toggle='tooltip' data-original-title='<i class="fa fa-square" style="color:PaleGoldenRod"></i> Golden Standard'></u>"
}
In the DataBound event of a grid, am using below code to show tooltip.,
dataBound: function (e) {
$("[data-toggle='tooltip']").tooltip();
}
Please see the attached screenshot for refrence.
Thanks in advance.

Grid functionality "filterable" has two modes: "row" and "menu".
When I'm using option "row", it will automatically also display autocomplete suggestions when I type something, like in screenshot.
When I'm using option "menu", it will not display auto complete suggestions.
How can I fix this for "menu"?
The default functionality of kendo jquery combobox is that whenever we search something and hit tab it selects the item and in the next tab hit, the focus goes to the next input . However I want to combine these two steps, so that only one tab hit should select and move the focus to the next element. (e.g in devexpress https://demos.devexpress.com/MVCxDataEditorsDemos/Editors/ComboBox if you search in the combobox and press tab it selects the drop-down item and focuses on next input immediately). Is it possible to do in kendo combobox?

Hi,
Could you please confirm or not that the Switch widget is compatible with IE9/10.
Seems not sure for me.
Best regards,
Laurent.
I have a problem with numerictextbox initialization.
http://jsfiddle.net/je2vh4cL/
When I click on click span - everything is ok. Focus/click event from input generate error on Chrome/IE. Any ideas?