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!
Hello,
When locked columns and multi-column headers are configured in a grid and selectable: "multiple cell" is configured, we observed
Example : https://dojo.telerik.com/@shashi.kumar/IdeKUHam
What is the behavior of shift + selection on grid? Is there any documentation for the same?
Is there any way we can disable shift + selection for the grid? (ctrl selection & mouse selection should work)
Thanks
Hello,
1. How to put validation in spreadsheet when i'm getting data dynamically their are data coming key value pair.So how to validate every column based on requirement.Please help me to solve this problem. Thanks
Hello,
1. Is it possible to send key as number in spredsheet this number show as header. When I'm sending this key it's throwing error.If you have any idea please help me.
I'm sending like this
[{"2019":5475.13,
"2022":5676376.325,
"2023":5443.2332}]
I want to set key as header.
Hi,
When the browser side page contains Chinese characters, the display is normal(kendo.culture.zh-CN.min.js and kendo.messages.zh-CN.min.js).
However, after exporting PDF, Chinese characters cannot be displayed normally.
The code I use is: var scheduler = $("#scheduler").data("kendoScheduler"); scheduler.saveAsPDF();
How can I solve this problem?
Thank you for your help!
Hi everyone,
is there a possibility to display SVG-Code in the drop-down list of a split-button in a toolbar. When i try to set the text attribute of the button the SVG source-code gets displayed
regards
Frank
Hi,
In this demo: https://demos.telerik.com/kendo-ui/scheduler/timeline
How can I elegantly get field value that is DropDownList type in customize validation function , for example: roomId or attendees.
Thank you very much for your help.