Is that doable? If so, how should I fix my code? Any idea?
Hi
I have a Requirement where only one attendee is allowed to schedule his appointments , there are many attendee exists. so I want to show only one attendee in dropdown list and I have populated with single attendee in dropdown list but after that create event is not working in Scheduler. please help me to sort out this issue or please provide me option so that I can disable attendee dropdown list.
Thanks & Regards

Hi,
I need a little help if possible.
I have the following situation: We have "old" angularjs application built using Kendo UI Jquery (and some angularjs) components. We also have the custom theme for the app - based on kendo ui default theme and dark theme built through theme builder.
Recently we decided to slowly migrate to the latest Angular version (and logically) to use Kendo UI Angular. Since we are taking strangling tree approach, we are firstly migrating small individual windows.
To solve this I am basically building "standalone" angular components which I port to the old app. This is not the ideal process, but only possible in the moment.
What I need a help is following: My new standalone component have its styling and import kendo ui theme from Kendo UI Angular. So when I import my component's js file, I have to import its css file as well. Problem is that after I do this import, both of my apps are broken - styles mix up together and override eachother.
Is there any suggestion or a way that I can prevent this - how to intentionally separate things in these two css files to stop overriding eachother?
Thank you
Regards,
Vedad
Hi, I need help in Kendo jQuery Gantt, I managed to remove time from Grid columns but how can I remove Time from Planned Start, Planned End, Actual Start, and Actual End fields? I only need date to be selected from the picker and to show in dd/M/yyyy format.
Hi,
Is there any way to set the standard print options like "fitting content to print area" or "standard print page size'" while creating a PDF from the drawing API?
let pdfOptions = {
paperSize: 'a3'
landscape: true,
//something like this
printOptions = {
fitContentToPrintArea: true,
paperSize: 'a4'
}
};
kendo.drawing.exportPDF(root, pdfOptions).done(function (data) {
kendo.saveAs({
dataURI: data,
fileName: fileName
});
});

During try the new version 2023.1.425 mobile listview component, when we binding data and used the template, we found the prompt data [0].
uid is undefined, The old version did not find this problem, the new version of this problem, I do not know why.
see the link
https://dojo.telerik.com/?_gl=1*dxcc66*_ga*MTQyMzc3MjYyLjE2NzgwNzg5MjA.*_ga_9JSNBCSF54*MTY4NjA5NjI4NC4xMC4xLjE2ODYwOTYzMTguMjYuMC4w
Hi Team,
we are using kendo UI jquery grid for displaying the data. In one of the column we have to display date time. is there a way can we filter date and time combined? with date alone we are able to filter but not with date time together. Please let us know and share the code samples/link if possible
I'm trying to display the content of a Kendo UI Grid dataSource schema model field as an HTML hyperlink. However, I'm getting its content as a string instead.
Here is my code:
var initDSStock = [
{% for ligne in liste_logements %}
{% set logement = ligne.logement %}
{
log_etat_log: 'test'
},
{% endfor %}
];
var dataSource = new kendo.data.DataSource({
pageSize: 25,
data: initDSStock,
schema: {
model: {
fields: {
log_etat_log: { template: '<a href="\\#">#= log_etat_log#</a>' }
},
},
}
});
grid.data("kendoGrid").setDataSource(dataSource);Is that doable? If so, how should I fix my code? Any idea?
Hi,
I got specific request that I should highlight week number (and possibly that row) in calendar when user goes on week number with the mouse.
User wants to be able to select whole week in one click.
Can you please advise on approach how to achieve this, since I don't see any "hookable" event that I can use.
Thank you very much
Regards,
Vedad
Hi,
I have one question. Is there a way to achieve "racing" bar chart where bars raise as values changes in the background and bars "order" is changed based on the value.
I know its a long shot, but maybe there is a usable idea or workaround.
Thank you and regards,
Vedad
How do you get the selected items in a Kendo UI for jQuery MultiSelect to stack vertically?
Here's what I'm getting; note that the textbox keeps expanding horizontally as each item is selected:
Here's what I need:
Thank you.