Right now I have and Active Sheet and inactive sheet. Onclick I load data for the the Active sheet. I understand how to create another sheet tab name. Is there any documentation on Loading data to the second sheet or syntax.
Active Sheet >>>> var spreadsheet = $("#spreadsheet").data("kendoSpreadsheet");
var sheet = spreadsheet.activeSheet();
sheet.range("D6:I6").values(column);
InActive Sheet >>>> var spreadsheet 2= $("#spreadsheet").data("kendoSpreadsheet");
var sheet2 = spreadsheet.InactiveSheet();
sheet2.range("D6:I6").values(newcolumn);
Hello, I have a Kendo grid and in one of the columns includes a dropdownlist as in this example:
https://demos.telerik.com/kendo-ui/grid/editing-custom?_ga=2.173256099.1285932464.1611750479-1230347328.1609856499 -> Column: "Category"
It turns out that because it is inside a grid I want to disable the selection of any button on the keyboard. I want the user to select only by the mouse.
How do I do that? I tried to use navigatable: false and .off ("keydown"), but it didn't work. Here is my code:
$('<input required name="' + options.field + '"/>')
.appendTo(container)
.kendoDropDownList({
autoBind: false,
dataTextField: "text",
dataValueField: "text",
dataSource: data,
optionLabel: {
text: "Select an Admission Status...",
value: ""
},
select: onSelectAdmissionStatus
});
Hi,
When i try to select a time slot with Edge this works fine, with Google Chrome this does not work. When i double tap on a item slot in Google Chrome the edit form of the event opens. Any idea why the visual selection is not working under Google Chrome.
Kind regards,
Marco

HI,
I have a strange problem.
I create a grid with data from AJAX.
I set the schema ID in the list of columns in position [0].
I also give it a HIDDEN: TRUE value to keep it hidden.
The problem is that for some reason the actual column of the ID is at the end of the columns and not at the beginning (*not* in position [0]).
I do not understand why this is happening.
can you please help me?
tnks!


Hi there, I am posting here to see if the community can to help me.
I am facing an issue where the PDF Export is, apparently, not working properly neither with MS Edge (88.0.705.53) nor on Chrome ( 88.0.4324.104 ), but is working fine on Firefox (84.0.1). When I try to generate the PDF with pictures that are stored on AWS S3 it throws CORS' errors to the Edge/Chrome console as you can see by the attached picture. When I generate the PDF from Firefox it works like charm.
I have read the AWS S3 CORS documentation (https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/cors.html), I have read the Mozilla documentation (Cross-Origin Resource Sharing (CORS) - HTTP | MDN (mozilla.org)), I have adjusted my CORS and nothing.
I have opened a ticket to the support and no one has being able to guide me or fix the issue that happens only on Edge/Chrome.
My CORS configuration, for this test purpose, is like this:
[
{
"AllowedHeaders": [
"*",
"Authorization"
],
"AllowedMethods": [
"HEAD",
"GET",
"PUT",
"POST",
"DELETE"
],
"AllowedOrigins": [
"*"
],
"ExposeHeaders": [
"ETag",
"x-amz-meta-custom-header",
"x-amz-server-side-encryption",
"x-amz-request-id",
"x-amz-id-2",
"x-amz-delete-marker",
"Accept-Ranges",
"Content-Range",
"Content-Encoding",
"Content-Length",
"Content-Type",
"Content-Language",
"Expires",
"Date",
"Server",
"Access-Control-Allow-Origin",
"Last-Modified",
"Pragma",
"XMLHttpRequest",
"Server",
"Cache-Control",
"Authorization"
],
"MaxAgeSeconds": 3000
}
]
I created a DOJO (https://dojo.telerik.com/iMITUZuY/2) that proves that it works on Firefox but does not work on Edge/Chrome.
So, I would be grateful if anyone can help me solving this.

Hi,
i found that when i click the export pdf button on scheduler, the alignment of the calendar will run, as such the all day row and the remaining rows will misalign. This happens to the demos at this link as well :
https://demos.telerik.com/kendo-ui/scheduler/pdf-export

Hi,
how can i print the weekly view that has its event being expanded?
because the current pdf function will not show the full title of the event if the event title is too long.
Hello. I am looking forward to use Kendo UI Scatter Chart. However I want to clarify customization question to understand if it possible to change (setup) Kendo UI Scatter chart to meet my requirements.
[Q] Does Kendo UI Scatter Chart support zooming by rectangle? (when you draw a rectangle and all that is in this rectangle will be zoomed)