I have a grid in batch editing mode. When I click on add new row, it triggers a create event and when I edit a row , it triggers an update event. This is all good and it is as per documentation.
But My requirement is as such When I click on "add new row" it should trigger an update event instead of create event is that possible ?
What I am trying to do is , since it is batch save. So even a new row added should be treated like modifying a row. So for example if I do the following
(1) Add a new row
(2) modify an existing row
On clicking save changes button, it should trigger a update action and 2 objects should be sent to server for update . Please let me know if it is possible ?

Below is my kendo chart where I'm binding the datasource via angular. The data displays but I want my field which is monthTotal to be formatted as currency.
<div kendo-chart
k-legend="{ position: 'bottom' }"
k-series-defaults="{ type: 'line' }"
k-series="[ { field: 'monthTotal', name: 'Monthly Total', categoryField: 'invoiceDate' } ]"
k-data-source="refunds6Months"
style="height: 250px;"></div>
Hi guys,
I'm currently using Angular 1.5.x with Kendo UI Professional, the latest release (version 2016.2.504).
I have a kendo grid which uses row templates. In these row templates, I have a number of angular directive elements that is basically a wrapper around the Kendo combo box and a button. The kendo combo box is bound to a remote data source using the kendo.data.DataSource object. Whenever I attempt to add a new Row or remove an existing row from the Kendo grid, I think Kendo redraws everything in the grid and all of my angular elements get recreated so that each angular element with the remote data source goes through a DataBound event and calls the remote source again. This is highly inefficient is something that I want to avoid overall. I know that if I just use a plain old kendo combo box instead of my angular wrapper element, this doesn't happen, but that's not what I want. Can anyone help me with this? Is there some way I can stop the angular element from being recreated whenever I want to add a new row or remove an existing row from the Kendo grid?
Thanks in advance for the help!
Idea was born because of this answer.
I propose you should reconsider splitting options into two interfaces. One for constructor and one for common use. TypeScript users would gain a lot, since this tell us which properties exists on specific widget and are safe to use.
The other benefit is to avoid typecasting to any.
Propose definition structure:
class Window extends kendo.ui.Widget{ static fn: Window; options: WindowProperties; //notice a change readonly isMaximized?: boolean; element: JQuery; wrapper: JQuery; static extend(proto: Object): Window; constructor(element: Element, options?: WindowOptions); center(): kendo.ui.Window; close(): kendo.ui.Window; content(): string; content(content?: string): kendo.ui.Window; content(content?: JQuery): kendo.ui.Window; destroy(): void; maximize(): kendo.ui.Window; minimize(): kendo.ui.Window; open(): kendo.ui.Window; pin(): void; refresh(options: any): kendo.ui.Window; restore(): kendo.ui.Window; setOptions(options: any): void; title(): string; title(text?: string): kendo.ui.Window; toFront(): kendo.ui.Window; toggleMaximization(): kendo.ui.Window; unpin(): void;}interface WindowOptions { name?: string; actions?: any; animation?: boolean|WindowAnimation; appendTo?: any|string; autoFocus?: boolean; content?: WindowContent; draggable?: boolean; iframe?: boolean; height?: number|string; maxHeight?: number; maxWidth?: number; minHeight?: number; minWidth?: number; modal?: boolean; pinned?: boolean; position?: WindowPosition; resizable?: boolean; scrollable?: boolean; title?: string|boolean; visible?: boolean; width?: number|string; activate?(e: WindowEvent): void; close?(e: WindowCloseEvent): void; deactivate?(e: WindowEvent): void; dragend?(e: WindowEvent): void; dragstart?(e: WindowEvent): void; error?(e: WindowErrorEvent): void; maximize?(e: WindowEvent): void; minimize?(e: WindowEvent): void; open?(e: WindowEvent): void; refresh?(e: WindowEvent): void; resize?(e: WindowEvent): void;}interface WindowProperties extends WindowOptions{ isMaximized?: boolean;}We generate a rather complex nested div and when we use drawDOM to export to PDF it works most of the time. Sometimes, however, it drops one of the internal divs. This only happens in Chrome, and not in IE or Firefox.
Please see sample code at dojo.telerik.com/uTAnE/5
Note then when run Safari, the exported PDF correctly includes both boxes on the 13th (the yellow and the gray box). On Chrome, however, the yellow box is missing. This seems to be data-dependent as if we have more internal boxes, everything is OK.
Any help you could provide would be greatly appreciated.

Hi folks,
I have a requirement for events to be scheduled in 5 minute increments, I have implemented the following code in the scheduler config:
views: [
{
type: "day",
minorTickCount: 30, // display one time slot per major tick
majorTick: 60
},
]
This serves the purpose but the actual slots are around 30 pixels in height, this means that the schedule for the full day is very long and
overflows off the bottom of the page. Ideally I would like the entire schedule to only take up a max of 900-1000px in height with the slots
being much smaller in height, is there an intelligent way of doing this?
Thanks in advance
Hi
While page refreshes and reloads, DropDown list shows Drop Down's selected value in a textbox. Though Once page is loaded it is all fine. But for our purpose it is not desirable to show value that dropdown is binded to. If it had shown the selected text it would have been ok. We also don't want to hide the drop down untill page is ready and show it.
I dont see it is a performance issue as well since i created a seperate view and had only dropdown control in the entire view. Have provided sample code that you can execute to test the behavior
@model ViewModels.DdlVM
@using (@Html.BeginForm())
{
@(Html.Kendo().DropDownListFor(m => m.ddlprop)
.DataTextField("Text")
.DataValueField("Value")
.BindTo(Model.ddlOptions )
)
<input type="submit"
value="save" />
}
namespace ViewModels
{
public class DdlVM
{ public List<SelectListItem> ddlOptions { get; set; }
public string ddlprop{ get; set; }
}
}
controller
public ActionResult ClickMe()
{
DdlVM testvm = new DdlVM();
testvm.ddlOptions = new List<SelectListItem>();
for (int i = 0; i < 100; i++)
{
testvm.ddlOptions.Add(new SelectListItem()
{
Text = "TAB- " + i.ToString(),
Value = i.ToString()
});
}
return View("TestClickMe", testvm);
}
[HttpPost]
public ActionResult ClickMe(DdlVM testvm)
{
testvm.DelimiterOptions = new List<SelectListItem>();
for (int i = 0; i < 100; i++)
{
testvm.ddlOptions.Add(new SelectListItem()
{
Text = "TAB- " + i.ToString(),
Value = i.ToString(),
Selected = testvm.ddlprop== i.ToString()
});
}
return View("TestClickMe", testvm);
#endregion
}