Hi,
I have a grid that can be modified incell and in one of my cell, I have an editor that creates a dropdowntree. When i want to select an element of the dropdowntree it trigger the select event but not the change event and doesn't go in the save of my grid.
The dojo link will show you the problem
https://dojo.telerik.com/uSULOkUc
Please let me know if you have any fix for this.
Thanks.
public static MvcForm BeginForm(this AjaxHelper ajaxHelper, HtmlHelper htmlHelper, AjaxOptions ajaxOptions, bool addAntiForgeryToken = true, string actionName = null, string controllerName = null,
object routeValues = null, object htmlAttributes = null)
{
return htmlHelper.BeginFormWithAntiForgery(
() => ajaxHelper.BeginForm(actionName, controllerName, routeValues, ajaxOptions, htmlAttributes),
addAntiForgeryToken);
}
private static MvcForm BeginFormWithAntiForgery(this HtmlHelper htmlHelper, Func<MvcForm> formFunc, bool addAntiForgeryToken)
{
var form = formFunc();
if (addAntiForgeryToken)
htmlHelper.ViewContext.Writer.Write(htmlHelper.AntiForgeryToken().ToHtmlString());
return form;
}
Is there a list somewhere of the items that are not possible with a dialog that would be possible with a window?
...or some sort of decision tree as to when to use a window and when to use a dialog?

so i have some data to be represented in a grid. Product list basically.
each product can have different types. enabling toggle to be given in the grid itself. only one type of service can be selected per product.
if i have 3 rows for a product, do we have any functioanlity that gives me this feature in kendo to enable only 1 of them at a time?

Hi,
I wanted to use the Window functionality and sometime use the maximize method on it. The target browser for the application is IE11. But I have discovered that the maximize of the window does not work in a special case
Here is a demo and the steps to reproduce the bug
https://runner.telerik.io/fullscreen/IPapI/2
1. Open the above demo in IE11
2. Close the kendo window.
3. Resize the browser window so that you have scroll in the demo
4. Refresh the browser
The kendo window is not fully maximized.
Probably the Width of window fully maximized I might get, but why is the Height of window smaller?
Hello,
It seems chart seriesDefaults.labels.position property is missing from typescript definition:
docs: https://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/chart/configuration/seriesdefaults.labels.position
interface ChartSeriesDefaultsLabels {
background?: string;
border?: ChartSeriesDefaultsLabelsBorder;
color?: string;
font?: string;
format?: string;
margin?: number | ChartSeriesDefaultsLabelsMargin;
padding?: number | ChartSeriesDefaultsLabelsPadding;
rotation?: string|number;
template?: string|Function;
visible?: boolean;
visual?: Function;
from?: ChartSeriesDefaultsLabelsFrom;
to?: ChartSeriesDefaultsLabelsTo;
}

Hi!
Have any ways make infinite scroll for data source? I need make cyclical page scrolling. By default Kendo disable next scroll button when reached last slide.
What i tried. I attach functin on onchange event like this
_infinityScroll: function (e) {
var nextPage = e.nextPage,
currentPage = e.curentPage,
items = e.sender.dataSource.data();
if (currentPage === -1) {
e.curentPage = 0
}
if (nextPage === -1) {
e.nextPage = 0
}
if (nextPage === items.length) {
e.sender.element.data('kendoScrollView').scrollTo(-1);
e.preventDefault();
}
_showScrollButtons()
},
It's works but looks so bad...

Hello,
I want to disable editable of some columns. I set the editable false in datasource, but it does not work. I created a demo of this issue: http://dojo.telerik.com/aqAQIYUf/2 . I set the editable false for FieldName and DataType. But they can be edited in both inline and popup mode.
Did I do something wrong?
Thanks
Lei