Is any way to access kendo controls in EditorTemplate?
If I have
@Html.Kendo().DropDownList().Name("Name1").HtmlAttributes(new { style = "width:100%;" })
int EditorTemplate
In Edit event of grid or inside EditorTemplate attempt to access kendo controls returns undefined value like
$("#Name1").data("kendoDropDownList") is undefined.
It undefined in edit event, it undefined anywhere I believe due to control is not being initialized yet.