I have the following code that uses the upload control to take a spreadsheet from our end user and uploads it and then parses it out into our objects.
var workbook = new kendo.spreadsheet.Workbook({});
workbook.fromFile(file).then(function() {
Do lots of things;
});
I have had zero issues with this block for the most part. However one of our end users has tried to upload a file and they are running into issues. When I debug the code it hits the fromFile, and then goes right past the then. I had multiple breakpoints inside the then, and none of them were being hit. In my last attempt I let it run for almost an hour before I killed it. I tried wrapping it in a try catch to see if it was erroring out and nothing. I tried to upload the file on the demo for the api (https://docs.telerik.com/kendo-ui/api/javascript/ui/spreadsheet/methods/fromfile) and it loads fine there.
I am at a loss and would love some insight. I have attached the spreadsheet that is causing issues hoping that someone can shed some light on it for me.
need to have the ability we have in a grid, to set the field to "string" or object EXPLICITLY
P.S seems right now it is under self determination based on fields value & if the field is null & editor DropDown, the object will be set instead of just value
Hi Guys,
I have just noticed an issue with the Scheduler component whereby the dataBound event is constantly being fired during resize events.
To illustrate the problem run the following dojo
https://dojo.telerik.com/uCaQOcEX
and then resize the browser window and you will see multiple 'dataBound' messages hitting the console.log
Running a similar test with the Grid component for comparison
https://dojo.telerik.com/ifoHEDUd
does not cause these multiple dataBound events on resize.
Therefore I suspect this is not the expect behaviour of the Scheduler component but a bug within the code.
Please advise.
Regards
Alan
Hi I am using PivotGrid V2 and binding to local data ( json array ), the data contain a field called CompletedDate ( format 16/4/2022 18:00), what I would like to do is create a pivot grid that contain the month name columns as below, is this possible
| Year: 2022 | |||||||||||||
| Jan | Feb | March | April | May | June | July | Aug | Sep | Oct | Dec | |||
| Status | Reviewed | 1 | 4 | 1 | 9 | 33 | 4 | 5 | 26 | 5 | 22 | 33 | 134 |
| Awating Review | 3 | 6 | 6 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 23 | |
| 4 | 10 | 1 | 1 | 34 | 5 | 6 | 27 | 6 | 23 | 34 | 151 | ||
Thanks

I am resetting the grid's state like this:
const $grid = $gridRoot.find('.xifacts-simple-grid');
const grid = $grid.data('kendoGrid');
grid.dataSource.filter({});
grid.dataSource.sort({});
grid.dataSource.pageSize(5);
grid.clearSelection();
grid.dataSource.page(1);All is good, the grid state is correctly reset (it goes to page 1) - but it still shows the old page that was selected.
Same for the Items/Page.
Here is a gif for the issue:
Hello ! i am using a telerik grid in order to display my data, when i go to edit the rows i want it to update my database however all the demos i have seen are using URLs as part of the CRUD function, i use a sql database so urls will not work. Is there an alternative method?
Kind regards

Hi I cannot find a 'Count' aggregate in the new Pivot grid , the previous version did have it ?
Also will there be support to provide a 'Percentage' measure
Thanks
Hi there,
We face a few filter-related issues when exploring Pivot grid V2 and using the default configuration options.
1. When Kendo pivotGridconfiguratorV2 is not displayed we miss the opportunity to apply filters (that works in the legacy Pivot grid). Can you suggest a workaround or a config option?
2. When a filter is programmatically applied and the configurator is displayed, in the respective field dropdown this is still not reflected (prefilled), so the user wouldn't know a filter is already acting. That also works in the legacy Pivot.
3. For certain field types (e.g. number) the option to apply field filter is not provided at all, even when we have one programmatically applied already, only 'Include fields...'
Please, provide guidance on the issues above.
Thank you,
Georgi