Hi All,
I need Kendo Gantt Chart Export to Excel option how can be do if any example is there please provide me, please help me to provide excel option.

Hi guys
I am loosely trying to recreate this sample editing nodes using a form, but using the kendo form as I like the ability to add validation etc
The first time I create the form it works.. but if I try to update it ( e,g select another node) , the values are not displayed.
The above link hopefully explains what I mean.. I try destroying the form and then remaking it ( resetting the fields to the new values) , but I never get to see the new values. ( click on the open form button a 2nd time)
Any pointers would be greatly appreciated!
Many thanks
Rob

Hi team,
Can we create a drawer with Mini Mode, but allow user to expand collapse it on the click of first item? instead of the extra toolbar div above?
I tried creating it in this dojo (https://dojo.telerik.com/uBAnorUY/7), it expands the drawer but also collapse it after expansion.
appreciate any help.
ashutosh
Hello, I have a problem with tooltips and hope you can help me.
Under certain circumstances multiple tooltips are shown and won't close (see screenshot and screenrecord).
To reproduce this move the cursor quickly over elements that have a tooltip.
Is there a way to fix this?
How do I set the spreadsheet column filters as active after loading remote data? I'm not applying any filters, only activating the dropdowns on each column.
I've tried setting it when adding a new sheet (commented out), as well as through code (last line), but can't get either method to work.
let ssResults = $("#spreadsheet").kendoSpreadsheet({
rows: 10,
columns: 10,
columnWidth: 192
}).data("kendoSpreadsheet");
let goodData = $.parseJSON(dataResults.d);
//put results in spreadsheet
let columnWidth = Object.keys(goodData[0]).length;//column count
let columnName = getCharFromNumber(columnWidth);//custom function to get excel letter column
ssResults.insertSheet({
rows: goodData.length + 2//, //header + info
//filter: {
// ref: "A2:" + columnName + (goodData.length + 2).toString() // Headers
//},
});
ssResults.activeSheet(ssResults.sheets()[ssResults.sheets().length - 1]);
ssResults.activeSheet().setDataSource(goodData);
ssResults.activeSheet().insertRow(0);
ssResults.activeSheet().range("A1:" + columnName + "1").merge().value(queryInfo).wrap(true);
ssResults.activeSheet().filter.ref = "A2:" + columnName + (goodData.length + 2).toString();
Does the kendo scheduler have an option to export data to excel format?
I currently have 8 columns in the grid and each column has the filter option enabled. I want to add more columns and provide the option to hide columns to the user.
I want to retain the filter option in all columns as it is most often used by the user, but provide the 'hide column' option ONLY in the last column, as in the attached mockup.
Is this possible? If so, how?
Is it like hide columnmenu in all columns except the last one and setting columns.filterable = true for all other columns?
Sorry for not adding any code, I am not a dev!
range.validation({
dataType: "list",
showButton: true,
comparerType: "list",
from: `"Item 1", Item 2, Items 3"`, // Double quotes after Item 1 is required, options: Item 1", Item 2, Item 3.
allowNulls: false,
type: "warning",
messageTemplate: "Invalid."
});