Hi.
I use the Kendo UI Custom Download whenever I download a new version of the Kendo UI, or need to add a specific component to my custom kendo package.js
This normally happens once every 6 months or so, and it is always a pain because I never remember what components I need to check in the configurator before downloading. There are "hundreds" of checkboxes to tick, and I don't remember all features I selected the last time I downloaded my package.
Is there a way to store this setup on my userprofile, so I can restore this the next time (in 6 months when e.g a new version is available) I visit your webpage?
I'm finding that when I call .kendoWindow on $("#window"), the #window div is moved to the end of the body
<form> <div id="window"> <input type="text" name="partOfMyForm" /> </div></form>
But what if the contents of the window are inputs that belong to the form and need to be submitted with it? Is there a way to leave the window element inside the form element?

Hi,
I need help with my Kendo Editor.
The tool bar is invisible and not functioning. Here is the script:
$("#ItemAuctionDetail_editItemDescription").kendoEditor({
resizable: {
content: true,
toolbar: true
}
});
The screenshot of the page is attached.
Please help me to figure out.
thanks.

Aggregate function returns empty object after query
http://jsbin.com/lahaficupu/1/edit?html,output

I have used kendo grid in angular typescript, I do want to have move pagination top of the grid. Can you please help to get this done?
Thanks in advance.

Inline editing does not function at all within the constraints of batch editing and is creating significant problems for our development team.
To see this in effect: Add a new record to a grid with inline editing and batch editing set. Hit the update button for that record.
When hitting the Update button with inline editing setup, the saveRow method calls the dataSource sync method without regard to the batch setting. Note the console.log statements indicating the
At the very least, this needs to be called out within the API documentation.
This behavior can be seen with the following (same example on both links, duped for backup):
http://dojo.telerik.com/@djones/EfOXi
https://jsfiddle.net/8szucmty/

I am creating an inline editable grid where I can add row after row or edit a row or delete a row and during that whole process, I don't want to save any changes to the DB. I am using batch:true in the dataSource. I also have the add/edit/delete/done/saveAll buttons outside the grid (not using the toolbars).
Currently, I am calling addNew() from the add button and a new row appears with the editable controls (dropdown, etc) - all good so far
When I click on the done button, I want the current row to stop editing and turn into static text in the grid, but not trigger the create/update/etc options in the dataSource.
When I click on the save button, that is when the changes should be sent to the DB via the dataSource settings.
How can I achieve this?
Thanks,
--Ed

Trying to display data from a remote api sending jsonp and using server paging. For some reason the grid will not display the data. There are no error messages and Chrome/FF have no trouble parsing the jsonp. To get this to work I can change either the API or the web app, whatever it takes.
Here's the jsonp:
jQuery112403661894688946523_1524408300528([{"total":4,"d":[{"t_id":6,"thread_title":"The Latest news is not good","thread_body":"Here is a long description of the problem and no solution offerred. Here is more typical BB nonsense. Here's a personal story about more nonsense..","thread_created_dt":"2018-03-21T18:08:32.7651816","thread_edited_dt":"2018-03-21T18:08:32.7651816","up_count":0,"down_count":0,"posts_count":3,"posts_last_dt":"2018-04-17T02:21:02.5061225","posts_first_dt":"2018-03-21T18:20:18.1132348","u_id":2,"username":"scdecade","user_created_dt":"2018-01-06T15:52:50.0880940","ranking":1},{"t_id":4,"thread_title":"Lorum ipso lorum","thread_body":"Fets over on everyone.","thread_created_dt":"2018-01-06T16:45:05.1147048","thread_edited_dt":"2018-01-06T17:28:12.0919741","up_count":1,"down_count":1,"posts_count":58,"posts_last_dt":"2018-01-10T15:56:08.7811010","posts_first_dt":"2018-01-06T21:42:54.3239900","u_id":2,"username":"scdecade","user_created_dt":"2018-01-06T15:52:50.0880940","ranking":2}]}])
Here's the html body :
<body>
<br style="margin-bottom:240px;" />
<div id="grid"></div>
<script>
var dataSource = new kendo.data.DataSource({
transport: {
read: {
url: "https://ndpapi.azurewebsites.net/api/v/threads/active/5",
dataType: "jsonp",
type: 'GET'
},
parameterMap: function (options, type) {
if (type == "read") {
return {
n: options.page,
s: options.take
}
}
}
},
schema: {
total: "total",
data: "d",
model: {
id: "t_id",
fields: {
t_id: { type: "number" },
thread_title: { type: "string" },
thread_body: { type: "string" },
thread_created_dt: { type: "date" },
thread_edited_dt: { type: "date", nullable: true },
up_count: { type: "number" },
down_count: { type: "number" },
posts_count: { type: "number" },
posts_last_dt: { type: "date", nullable: true },
posts_first_dt: { type: "date", nullable: true },
u_id: { type: "number" },
username: { type: "string" },
tagline: { type: "string", nullable: true },
url: { type: "string", nullable: true },
user_created_dt: { type: "date", nullable: true },
ranking: { type: "number" }
}
}
},
pageSize: 2,
serverPaging: true,
serverFiltering: false,
serverSorting: false
});
$('#grid').kendoGrid({
dataSource: dataSource,
height: 800,
//toolbar: ["create", "delete", "update"],
filterable: false,
sortable: false,
pageable: {
refresh: true,
//buttonCount: 10,
//type: 'numeric',
pageSizes: true,
//pageSizes: [1, 2, 4, "all"],
info: true,
numeric: true,
previousNext: true
},
columns: [
{
field: "ranking",
title: "Rank",
format: "{0: #) }",
headerAttributes: {
style: "font-weight: bold; text-align: center; font-size: 10px"
},
width: "40px"
},
{
field: "thread_title",
title: "Thread",
headerAttributes: {
style: "font-weight: bold; text-align: center; font-size: 10px"
},
width: "120px"
},
{
field: "thread_body",
title: "Body",
headerAttributes: {
style: "font-weight: bold; text-align: center; font-size: 10px"
},
width: "240px"
},
{
field: "up_count",
title: "+Votes",
headerAttributes: {
style: "font-weight: bold; text-align: center; font-size: 10px"
},
width: "40px"
},
{
field: "down_count",
title: "-Votes",
headerAttributes: {
style: "font-weight: bold; text-align: center; font-size: 10px"
},
width: "40px"
},
{
field: "posts_count",
title: "Posts",
headerAttributes: {
style: "font-weight: bold; text-align: center; font-size: 10px"
},
width: "40px"
}]
});
</script>
</body>
Hello
I have a page with a kendoGrid that uses detail rows. The page works perfectly fine when I include all the javascript using script tags but I'm trying to move everything into webpack. Now everything looks correct but clicking a row just refreshes the page. It seems that kendo isn't registering a click event on the .k-icon anchors in the grid.I also have comboboxes and a chart on the page and the click events work on them.
I've spent a lot of time trying to debug this but I don't see any errors or warnings. Any help would be appreciated.