Hi,
I have a problem in dropdownlist angularjs
how to set dropdownlist ng-model after get ajax data
Sample my codes: http://dojo.telerik.com/@muratoner/icoBuB
Hello everyone,
the wanted behavior is that I want to sort 3 columns with multi sort functionality of the grid, but the problem is that two of my columns are build from objects and the multi sort is not working over them.
This is the example https://jsfiddle.net/x3Lqn2h3/
So, try first to sort over "age" descending (it works) after that try to sort over "name" (it works) and finally sort over "address" (it does not work). When you click over address the values "Pernik" and "Silistra" should swap their places but they don't.
Thank you for your help in advance!
Hello,
We have a problem with Kendo UI charts in Internet Explorer 11 ( may be problem there is in another version IE too, we used only IE 11 to check it). It is memory leak. When we change dataSource (setDataSource method) or when we do refresh / redraw, memory is not released.
Our datasource is large (10-15k points) and we need to refresh data every 10 seconds. It means that after 2 hours IE has size 1gb memory and allocated memory continues to grow.
You can see this leak at your tutorial page
http://demos.telerik.com/kendo-ui/scatter-charts/local-data-binding . Just Increase datasource to one thousand items and try to set data with setDataSource method at least 10 times. Every call setDataSource will increase memory to 3-5 mb.
Are there another way to update data in chart without this problem? Can you help us in this trouble?
https://dojo.telerik.com/EHiYU
In the datasource, the 4th date plot point is October 21, with a Revenue of 64, however when you run it the 4th plot point on the chart appears as October 18, with a Revenue of 64.
What's going on?
Hi
I am using kendo to export div into pdf
Below is the code
var draw = kendo.drawing;
draw.drawDOM($("#divexport"))
.then(function (root) {
return draw.exportPDF(root, {
pdf: {
date:new Date("MM/dd/yyy")
},
timezone: "Etc/UTC"
});
})
.done(function (data) {
kendo.saveAs({
dataURI: data,
fileName: fileName,
proxyURL: "api/Value/Post/",
forceProxy: true
});
Everything is working properly, however i want all the date control in "MM/dd/yyyy" format but it giving me date yyyy/mm/dd which is default input type date format..
I want to import the data into the spreadsheet using the file path in the kendo UI
But when I checked, I could not find a way to ask.
@(Html.Kendo().Grid<
BankAccount
>().Name("MyGrid").Columns(c =>
{
c.Bound(p => p.AccountTotal);
})