Hi,
Like Demo https://demos.telerik.com/kendo-ui/scheduler/timeline,
I want to change field start validation message when field input value is empty,
Like this:
start: { type: "date", from: "start", required: {message: "my validation message"} }
It's not work....
Thank you very much for your help.


Hi,
I am using Kendo UI for jQuery in my ASP .Net 6 application. would like to check if it is possible to hide the red box area in the attached image, and the area to be shown only when user select a row in grid

Hello,
What should I write to get the value inside the cell? I run in angular, I want to assign the cell value I selected to the variable.
@ViewChild('spreadsheet') spreadsheetEl!: ElementRef;
constructor(private hostEl: ElementRef) {}
ngAfterViewInit() {
kendo.jQuery(this.spreadsheetEl.nativeElement).kendoSpreadsheet({
columns: 3,
//rows: 10,
sheetsbar: false,
toolbar: {
home: [
"open", "exportAs",
{
type: "button",
text: "Material select",
showText: "both",
icon: "k-icon k-i-cog",
click: function(e: any) {
var sheet = this.spreadsheetEl.nativeElement.activeSheet();
var range = sheet.selection();
}
}
],
insert: false,
data: false,
},
...thank you
regards

$("#dropdowntree").kendoDropDownTree({
dataSource: {
type: "aspnetmvc-ajax",
transport: {
read: { url: "xxxxxxxxxxxxxxxxxxxxxxxxxxx" , data: forgeryToken, dataType: "json" }
}}thank you
Hi,
Demo is http://dojo.telerik.com/UgELisOy
In above demo,
var remoteValidator = {
valid: false,
initiated: false,
check: function(element, validator) {
remoteValidator.initiated = true;
//simulate Ajax
setTimeout(function() {
//TODO: set to true if valid
remoteValidator.valid = true;
validator.validateInput(element);
remoteValidator.initiated = false;
}, 1000);
}
};
The form cannot be submitted normally.
Thank you for your help!
Hi,
Is it possible to make date(month/day) is vertical and time(hour:minute) is horizontal in the "week" view of scheduler?
Thank you for your help!