Hi Admin and everybody,
I want call function() when click into color area.
It will get category and value corresponding to that region.
Can Kendo Pie Charts do that?
Hope to get a reply soon from Admn and everybody. Thanks so much.
Code Demo architecture that I want to apply:
<script>
var data = [
{
"source": "Hydro",
"percentage": 22,
"explode": true
},
{
"source": "Solar",
"percentage": 2
},
{
"source": "Nuclear",
"percentage": 49
},
{
"source": "Wind",
"percentage": 27
}
];
function createChart() {
$("#chart").kendoChart({
title: {
text: "Break-up of Spain Electricity Production for 2008"
},
legend: {
position: "bottom"
},
dataSource: {
data: data
},
series: [{
type: "pie",
field: "percentage",
categoryField: "source",
explodeField: "explode"
}],
seriesColors: ["#03a9f4", "#ff9800", "#fad84a", "#4caf50"],
tooltip: {
visible: true,
template: "${ category } - ${ value }%"
}
});
}
$(document).ready(createChart);
$(document).bind("kendo:skinChange", createChart);
</script>
</div>I want to make a grid with excel exporting feature which will export all data.
However, the grid might contain a massive amount of data that makes the export process spends lots of time.
I've found this that shows confirmation before exporting.
https://docs.telerik.com/kendo-ui/knowledge-base/export-the-grid-to-excel-only-after-confirmation
However, the confirmation popup window shows after loading all data (it popup after a few time after I click the export button, so I guess it loads all the data, or the excelExport event is activated after the excel file is well prepared to be exported).
Is it possible to show the confirmation window as soon as I click the export button?
Thanks.

01.$('#numeric').on('keydown', function (e) {02. if (e.which == 188) {03. e.preventDefault();04. caret = $(this).caret();05. value = $('#numeric').val() + '';06. if (value.indexOf('.') < 0 && value.indexOf(',') < 0) {07. $('#numeric').val(value.substring(0, caret) + '.' + value.substring(caret));08. $(this).caret(caret + 1);09. }10. }11.});Hi,
We are looking to get tabs with menu list or dropdown kind think in it , with items in that , Below i have attached image of our requirement,
Kindly provide solution for above requirement ,
Thanks,
Mike

Hi,
We currently have a Kendo Editor with paste cleanup set as:
pasteCleanup: {
all: false,
css: true,
custom: null,
keepNewLines: false,
msAllFormatting: true,
msConvertLists: true,
msTags: true,
none: false,
span: true
We've noticed an issue in that when copy and pasting underlined text within the control (not from external to the control), the underline is removed. I can only imagine that this is because we're stripping our SPANs with the above option. Our issue is that we can't really set this SPAN option to off as we explicitly do no want complex span elements being saved. Is there a workaround for this?
Thank you
I have Asp.net website , and telerik controls on it. On page load I get ConvertFontToSpanfilter error as a alert. On clicking few times 'OK' on alert i am able to process normal.
I am not able to figure it out why it's happening . As i know we can disable the filter but is there any specific reason it's happening?

I have a kendo ui jquery datasource that I'm using to populate my grid. I have added a custom toggle switch to show only active accounts or show all accounts. The switch works by calling the following function on change:
$(".my-page").on("change", "#myTableStatusToggle", function () {
if ($("#myTableStatusToggle:checked").length > 0) {
dataSource.filter({});
} else {
dataSource.filter({ field: "Status", operator: "eq", value: "Active" });
}
});

I have configured a grid and have set up the pager
pageable: {
refresh: true,
pageSizes: false,
buttonCount: 5,
},
This works everywhere else but in one grid where it shows a dropdown with page numbers
as soon as I open dev tools it changes
How can I get rid of that ?
Hello
I have installed the latest commerical KendUI JQuery : kendoui.for.jquery.2021.2.511.commercial.zip
When I copy/paste the example from https://docs.telerik.com/kendo-ui/api/javascript/ui/expansionpanel/configuration/title to my local project I got this error message:
TypeError: $("#expansionPanel").kendoExpansionPanel is not a function. (In '$("#expansionPanel").kendoExpansionPanel({
title: "Lorem ipsum"
})', '$("#expansionPanel").kendoExpansionPanel' is undefined)
I'm using many others widgets, never had such a case. Also PHPStorm does not color ".kendoExpansionPanel" in the code to let me know it can't be resolved. I'm working with JQuery 3.5.1 but that is probably not the problem.
Did I miss anything?
Hi, Using the demo site https://demos.telerik.com/kendo-ui/scheduler/import-export-ical I have added a all day event that expands 2 days, and then exported that data, when I import the data it changes to a 1 day event, is this a ical.js issue?,
export and then import i get
Thanks