Hello,
In my custom editortemplate I am checking which type of task/appoinment is being clicked on, so I am able to change the design of the editortemplate based on which type it is. Eg. I am using the "<div data-bind="visible: IsActivityAppointment">".
But how do I determine if it's a new event being created and set the editortemplate from that?
//Allan
Hello,
I have a grid which displays fine, but when trying to export to excel it exceeds the maxJson limit. Why can the grid work, but not the export to excel? Pageable and PageSize(100) on the grid so I'm guessing that the grid brings back data in chunks, but when it tries to export to excel and AllPages(true) that is where the problem is?
Thanks,
John
Hi all
I saw this demo : http://demos.telerik.com/aspnet-mvc/styling/radios
I want to know which radiobutton that user checked in client side.
for this one
@(Html.Kendo().RadioButton().Name("engine1").Checked(true).HtmlAttributes(new{@name = "engine"}).Label("1.4 Petrol, 92kW"));
I'm trying to use this
var rbEngine = $("#engine1").data("kendoRadioButton");
but I can't get any value...even checking status...
Am I using wrong method?
Thanks
Hi Kendo Team,
We are using kendo MVC textboxes, dropdowns, Grids, etc controls on our application pages.
We have used the @Html.Kendo().DeferredScripts(true) on the pages. However, we are seeing that this is taking close to 1 sec in the browser. All our APIs are returning data in less than 500 ms, but this causes the page to be rendered in close to 2 sec, when it could be faster.
Please advise if there is a way to improve the performance of @Html.Kendo().DeferredScripts(true)
Thanks,
Faraaz

How can I let users paste ' 123456 ' into my numeric textbox and have it auto-strip the spaces? There are spaces in the beginning and in the end too.
currently if there is any space at the beginning or at the end, it doesn't paste anything, show some sign of exclamation and value disappears.
<kendo-numerictextbox k-format="'#'" ng-model="searchParams.@Model.ParameterName">
</kendo-numerictextbox>
I also tried this where I am making dynamically kendo control as shown below:
<input kendo-numeric-text-box k-format="'#'" ng-model="searchParams.@Model.ParameterName" />
I have tried every possible solution,
Can you please assist how can I achieve this in Angular JS ?
Thanks,
Umair.

Hi,
I am trying to achieve the functionality of inserting a partial view with grid model property attached to it. Can you please help me?
How to render a textarea in the Form? I have the below code, it did increase the height of the textbox, but does not behave like textarea.
items.AddGroup() .Label("Comments") .Layout("grid") .Grid(g => g.Cols(1).Gutter(10)) .Items(i => { i.Add() .Field(f => f.Comments) .Label(l => l.Text("Comments:")).InputHtmlAttributes(new { style = "height:80px;" }); });
Thank you!

Working on integrating a Kendo.DropDownList() into a Kendo.Filter object.
It currently works in everyway, other than actually supplying the selected value from the DDL into the datasource / grid binding.
How do I map the Value selected in the Filter Editor Template to the datasource / grid binding. I just need to pass the selected words to be used in the code behind query.
Current Implementation (DDL):
@(Html.Kendo().Filter<KitValidationDtoModel>() .Name("filter") .ApplyButton() .ExpressionPreview() .MainLogic(FilterCompositionLogicalOperator.And) .Fields(f => { f.Add(p => p.OrderId).Label("Davidson Order ID"); f.Add(p => p.EdiOrderId).Label("EDI Order ID"); f.Add(p => p.Rfid).Label("RFID Tracker"); f.Add(p => p.Assy).Label("ASSY"); f.Add(p => p.Control).Label("Control Point").EditorTemplateId("controlTemplate"); f.Add(p => p.Ei).Label("End Item"); f.Add(p => p.Ship).Label("Ship"); }) .FilterExpression(f => { f.Add(p => p.Control).IsEqualTo(""); f.Add(p => p.Ship).Contains(""); }) .DataSource("dataSource1"))
<script type="text/x-kendo-template" id="controlTemplate">
@(Html.Kendo().DropDownList()
.Name("control_filter_dll")
.OptionLabel("Select Control Point...")
.DataTextField("Control")
.DataValueField("Control")
.DataSource(source =>
{
source.Read(read =>
{
read.Action("GetControlPoints", "CustomOrder");
});
}).Events(e => e.Change("onControlChange")).ToClientTemplate())
</script>