I'm using the custom distribution of version 2016.3.1028 (including each component individually) and ran into an issue using the Window component. Looking at the setup for the Window, it showed that the default options for effects includes "fadeIn" and "zoomIn" like it intends to animate the open interaction, but it doesn't actually complete the action.
Looking more closely at the code, there is a check for kendo.effects.Fade (with a capital F) and if that exists then we run kendo.fx(overlay).fadeIn(). The problem being that the component does not actually require kendo.fx, so the "Fade" effect isn't established and, if it was, we'd fail on the kendo.fx call since kendo.fx isn't a dependency for the window component. Right now, window only depends on dragAndDrop (which then depends on kendo.core and kendo.userEvents and jQuery). One work-around for us is to just include kendo.fx in the kendo window component's code, but that also requires a somewhat large dependency for a simple fadeIn interaction and it seems like this is an issue for the individual distribution of the kendo window.

I was able to get inline editing working with an update button like so:
one of my columns: { command: ["edit", "delete"], title: " ", width: "200px" }
{
editable: {
mode: "inline"
},
columns: setColumnsForTab(tabName, paymentClicked),
dataSource: new kendo.data.DataSource({
pageSize: 15,
data: $ctrl[tabName + 'GridData'],
transport: {
read: (options) => {
options.success($ctrl[tabName + 'GridData']);
},
update: function(e) {
console.log("update is called: ", e);
var updateItem = e.data;
console.log("updated object : ", updateItem);
e.success();
},
destroy: function(e) {
console.log("destroy");
e.success();
},
save: function(e) { console.log(e) },
create: function(e) {
console.log("create is called:", e);
console.log("create data is:", e.data);
e.success(e.data);
}
},
schema: {
data: function(response) {
console.log("results", response);
return response;
},
model: {
id: 'id',
fields: {
amountApplied: {
editable: true
},
}
}
}
})
}
How can I configure the options so that changes to the gridData are saved while the user is typing in the editable "amountApplied" field, rather than making the user click edit, and then type, and then click update, for it be saved to the gridData?

Hi,
My end goal is create a Telerik.Web.Spreadsheet.Workbook that is loaded from the database server side and load it in the Kendo spreadsheet control on the client side. This was working fine until I got to a certain size file.
To simplify I've attached a sample of the JSON of the worksheet that I'm having a problem loading and below is the code. I've checked a couple of sources to verify that the JSON validates. I'm not sure what else could be the problem. If you remove the last few rows (to truncate back to index 198) it loads fine.
Server side code:
public ActionResult ReadSheet(string id) {
string jsonWorksheet = string.Empty;
using (TextReader reader = System.IO.File.OpenText(@"C:\DemoRowTo204Broken.json")) {
jsonWorksheet = reader.ReadToEnd();
}
return Content(jsonWorksheet, Telerik.Web.Spreadsheet.MimeTypes.JSON);
}
client side code in an .cshtml file:
@(Html.Kendo().Spreadsheet() .Name("eSheet") .Toolbar(false) )<script> $(document).ready(function () { var spreadsheet = $("#eSheet").data("kendoSpreadsheet"); $.getJSON("@Url.Action("ReadSheet", "ProductGrid")", { id: $("#ProductID").val() }, function (data) { spreadsheet.fromJSON(data); }) }); </script>
Your advise is appreciated. Mark
Hi there,
http://dojo.telerik.com/OfiRE/4
The above is just an example, every grid with popup in my application is closing directly...
- after select of a value from a dropdown
- after focus out of an input where I typed something
I found, that the update function is called directly.
Normally, the update should happen by clicking the popups update button.
Is there anything I'm missing?
Thanks & BR,
Daniel
I'm working with transports for remote data for the DataSource, and I have a question with what exactly Kendo is expecting to be passed to options.success and options.error. I see it's the result from the server, but what is that result supposed to be? For example, what does Kendo expect to be returned from the server in an update? http://docs.telerik.com/kendo-ui/api/javascript/data/datasource#configuration-transport.update
I have a kendoGrid. Each time I change a value in the row (after clicking the "Edit" button) the "Change" event fires.
I only want this event to fire when the "Update" button is clicked.
The event does fire when the "Update" button is clicked. I just need to stop the event from firing when a value changes and the user leaves the field.
Can anyone help?
How to make the Treelist column popluate dynamically (something like autogenerate columns)?
I want to configure the columns based database table data.
Thanks
