I run VS2015 and Kendo ASP.NET MVC on a Parallels VM (2 CPUs). I have found that my build times had increased from 1 minute to around 10 minutes and the CPU was running with 50% utilisation (i'm guessing one core at 100%) continuously even just in the IDE with no activity.
Disabling the VS extensions seems to solve the issue (but is not obviously what I'd like to do).
Is this behaviour to be expected?
Thanks
Richard

Hello,
I have a grid that use the following ViewModel :
public class TrackRowViewModel       {           public long Id { get; set; }           public string Name { get; set; }           public string Description { get; set; }           public MilestoneModel ms1 { get; set; }           public MilestoneModel ms2 { get; set; }           public MilestoneModel ms3 { get; set; }           public TrackRowViewModel() { }       }
witch use a MilestoneModel :
public class MilestoneModel    {        public long Id { get; set; }        public string Name { get; set; }        public string Description { get; set; }        public DateTime Date { get; set; }    }
I would like to display the date properly in the cells . And use datepicker to change it.
So i tried many way to do it, but the most revelant was Client template and EditorTemplate (ms1)
@(Html.Kendo().Grid<Volvo.Qarma.MVCWebUIComponent.Models.Views.TrackRowViewModel>()           .Name("gridproj")              .DataSource(dataSource => dataSource               .Ajax()               .Batch(true)               .Model(model =>               {                   model.Id(o => o.Id);                   model.Field(o => o.ms1).DefaultValue(                   ViewData["defaultms"] as MilestoneModel);                   model.Field(o => o.ms2).DefaultValue(                   ViewData["defaultms"] as MilestoneModel);                   model.Field(o => o.ms3).DefaultValue(                   ViewData["defaultms"] as MilestoneModel);                                   })               .Read(r => r.Action("GetProjectsAllTracksObjectFromProject", "Project"))               .Create(c => c.Action("Editing_Create", "TracksAndMilestones"))               .Update(u => u.Action("Editing_Update", "TracksAndMilestones"))               .Destroy(d => d.Action("Editing_Destroy", "TracksAndMilestones"))               )       .Columns(columns =>       {           columns.Bound(o => o.Name);           columns.Bound(o => o.Description);           columns.Bound(o => o.ms1).Title("PCI").HtmlAttributes(new { @class = "color-PCI" }).EditorTemplateName("MilestoneDateEditor").ClientTemplate("#= kendo.toString(kendo.parseDate(ms1.Date, 'yyyy-MM-dd HH:mm:ss'), 'MM/dd/yyyy') #");           columns.Bound(o => o.ms2).Title("FeG").HtmlAttributes(new { @class = "color-Feg" }).EditorTemplateName("MilestoneDateEditor").ClientTemplate("#= kendo.parseDate(ms2.Date, 'yyyy-MM-dd HH:mm:ss') #");           columns.Bound(o => o.ms3).Title("CSG").HtmlAttributes(new { @class = "color-CSG" }).EditorTemplateName("MilestoneDateEditor").ClientTemplate("#=ms3.Date#");         })               .ToolBar(toolbar =>               {                   toolbar.Create();                   toolbar.Save();               })                       .Editable(editable => editable.Mode(GridEditMode.InCell))                       .Pageable()                       .Navigatable()                       .Sortable()                       .Scrollable()   )--The default value of fields ViewData["defaultms"] is an empty MilestoneModel object--
and the Editor as :
@model MilestoneModel@(Html.Kendo().DatePickerFor(m => m.Date).Name("MilestoneDate")    .Format("MM/dd/yyyy")        )
My Problem is when change the date with the timepicker editor, the date isn't displaying on the grid properly .
Do i miss something ?
Thank you in advanced for your help
Regards,
Would like to use the editor to capture plain text. I cannot see a way to have the editor return plain text as opposed to HTML. I have turned off the toolbar but it still wants to return HTML.
Jim
Hi Everybody,
  I have some questions about the way the ClientTemplates are working inside the  Grid. 
  Today I have the following code.
    Which are working fine. 
@(Html.Kendo().Grid<Felix.DomainModel.BusinessEntities.ManuallyCreatedEntities.LandsforeningerModel>                    ().BindTo(Model.Countries).Name("Countries")                    .ToolBar(configurator =>                    {                        configurator.Create();                    })                    .Editable(e => e.Mode(GridEditMode.InCell).CreateAt(GridInsertRowPosition.Bottom))            .Events(e => e.Edit("onEditItem")).Events(e => e.Save("onSaveItemLandsForening"))                    .Columns(columns =>                    {                        columns.Bound(m => m.Name).Encoded(true).EditorTemplateName("RelatedCountries").ClientTemplate("#= Name #" +                        "<input type='hidden' name='Countries[#= indexCountries(data)#].Name' value='#= Name#' />" +                        "<input type='hidden' name='Countries[#= indexCountries(data)#].Id' value='#= Id #' />"                        );                        columns.Bound(m => m.Startdate).Width(150).Encoded(true).ClientTemplate("#= kendo.toString(kendo.parseDate(Startdate,'dd/MM/yyyy'), '" + "dd-MM-yyyy" + "') #" +                        "<input type='hidden' name='Countries[#= indexCountries(data) #].Startdate' value='#= Convert2StringDate(Startdate) #' />").Format("{0: dd-MM-yyyy}");                        columns.Command(m => m.Destroy()).Width(100);                    })                    .DataSource(dataSource => dataSource.Ajax()                    .Model(model =>                    {                        model.Id(p => p.Id);                    })                    ))My question: is it possible to allow more formats in the input field, like ddMMyy and ddMMYYYY and not only dd-MM-YYYY.
How should this be done?
Hello,
I have been through all samples but non match the Scenario i have. My Kendo grid is inside a vertical splitter and the columns are dynamic. So in datagrid read Event the Controller picks a variable select stetement and then the columns and column Header names are stored in viewbag and in view the columns get bound to viewbag and datab\able returned from controlller method. One column should be editable as Dropdown and rest all not editable.
Attached is my view code and this is the column i am trying to use adropdown editortemplate and when i add this editable line i get crash
.Editable(editable => editable.Mode(GridEditMode.InCell))
Templates can be used only with field access, property access, single-dimension array index, or single-parameter custom indexer expressions.
 if (ViewBag.ObjAdressHeader[k, 0] == "Obj_AddressType"){
                        columns.Bound(ViewBag.ObjAdressHeader[k, 0]).Title(ViewBag.ObjAdressHeader[k, 1]).EditorTemplateName("AvailableValues").Width(70);
                       // columns.ForeignKey("Obj_AddressType", (System.Collections.IEnumerable)ViewBag.AddressTypes, "Value", "Text").EditorTemplateName("AvailableValues").Title("Typ").Width(70);
                       
                    }
My editortemplatelooks like
 @(Html.Kendo().DropDownList().Name("Obj_AddressType")
            .DataTextField("Text")
                 .DataValueField("Value")
       .BindTo(new List<SelectListItem>
                   {
                        new SelectListItem {Text = "Kunde", Value = "0"},
                       new SelectListItem {Text = "Kunde", Value = "1"},
                       new SelectListItem {Text = "Rechnungsadresse", Value = "2"}
                   }))
and view code
  rightverticalPanes.Add()
             .HtmlAttributes(new { id = "bottom-pane" })
             .Resizable(true)
             .Collapsible(false)
             .Content(@<text>
                        @(Html.Kendo().Grid(Model)
    .Name("Grid_ObjAdress")
     .DataSource(dataSource1 => dataSource1
                    .Ajax()
                    .PageSize(100)
                    .Model(model1 =>
                    {
                        if (Model != null)
                        {
                            foreach (System.Data.DataColumn ocolumn in Model.Columns)
                            {
                                if( ocolumn.ColumnName == "Obj_AddressType"){
                                    model1.Field(ocolumn.ColumnName, ocolumn.DataType).Editable(true);
                                }else{
                                model1.Field(ocolumn.ColumnName, ocolumn.DataType).Editable(false);
                                }
                            }
                        }
                    })
                    .Read(read => read.Action("ObjectAdress_Read", "ObjektActivity"))
 .ServerOperation(false)
                     )
                      .Resizable(resize => resize.Columns(true))
    .Columns(columns =>
    {
        if (ViewBag.ObjAdressHeader != null)
        {
            for (int k = 0; k < ViewBag.ObjAdressHeader.GetLength(0); k++)
            {
                if (ViewBag.AdrVisibleCols[k] == "0")
                {
                    columns.Bound(ViewBag.ObjAdressHeader[k, 0]).Title(ViewBag.ObjAdressHeader[k, 1]).Visible(false);
                }
                else
                {
                    if (ViewBag.ObjAdressHeader[k, 0] == "Obj_AddressType"){
                        columns.Bound(ViewBag.ObjAdressHeader[k, 0]).Title(ViewBag.ObjAdressHeader[k, 1]).EditorTemplateName("AvailableValues").Width(70);
                       // columns.ForeignKey("Obj_AddressType", (System.Collections.IEnumerable)ViewBag.AddressTypes, "Value", "Text").EditorTemplateName("AvailableValues").Title("Typ").Width(70);
                       
                    }
                    else
                    {
                        columns.Bound(ViewBag.ObjAdressHeader[k, 0]).Title(ViewBag.ObjAdressHeader[k, 1]).Width(120);
                    }
                }
            }
        }
    })
         .Editable(editable => editable.Mode(GridEditMode.InCell))
            .Selectable(selectable => selectable
                    .Mode(GridSelectionMode.Multiple))
                     .Sortable()
                     .Scrollable()
        .Filterable(filterable => filterable
                                          .Extra(false)
                                          .Operators(operators => operators
                                              .ForString(str => str.Clear()
                                                  .StartsWith("Starts with")
                                                  .IsEqualTo("Is equal to")
                                                  .IsNotEqualTo("Is not equal to")
                                              ))
                                          )
                                      .Groupable()
                                      .Reorderable(r => r.Columns(true))
                            .Resizable(r => r.Columns(true))
                                      ) 
Thanks
Anamika

I am working on single click for ASP.NET MVC scheduler. But the problem is when the custom event editor pop ups, there is only startdate and endate. How can I get other resource such as TechName?
@(Html.Kendo().Scheduler<TaskViewModel>()                                    .Name("schedulerJob")                                    .Date(DateTime.Today)                                    .StartTime(7, 0, 0)                                    .Height(700)                                    .EventTemplate("#if(title == 'Reservation') {#" +                                                    "<div class='reservationClass' style='float: left;'>" +                                                    "<img src='http://www.alegoo.com/images05/newyear/calendar-b11/015/calendar-icon-15.png' style='width:22px;' />" +                                                        "#= title #" +                                                    "</div>" +                                                    "#}" +                                                    "else {#" +                                                    "<div class='jobClass' style='float: left;'>" +                                                    "<img src='http://www.gratispos.com/wp-content/uploads/2011/06/User-Group-Home.png' style='width:22px;' />" +                                                        "#= title #" +                                                    "</div>" +                                                    "#}#")                                    .Views(views =>                                    {                                        views.TimelineView(v => v.Selected(true));                                    })                                    .Events(e =>                                    {                                        e.Edit("schedulerJob_edit");                                        e.Navigate("schedulerJob_navigate");                                        e.Remove("schedulerJob_remove");                                        e.Save("schedulerJob_save");                                        e.DataBinding("schedulerJob_dataBinding");                                        e.DataBound("schedulerJob_dataBound");                                        e.MoveEnd("schedulerJob_moveend");                                        e.ResizeEnd("schedulerJob_resizeend");                                    })                                    .Group(group => group.Resources("Techs").Orientation(SchedulerGroupOrientation.Vertical))                                    .Resources(resource =>                                    {                                        resource.Add(m => m.TechName)                                            .Title("Techs")                                            .Name("Techs")                                            .DataTextField("TechName")                                            .DataValueField("emm_code")                                            .DataSource(d => d.Read("Techs", "JOBS"));                                    })                                    .DataSource(d => d                                        .Model(m =>                                        {                                            m.Id(r => r.emm_code);                                        })                                        .ServerOperation(true)                                        .Read(r => r.Action("JobSchedule_Read", "JOBS").Data("passFilter"))                                        .Create("JobSchedule_Create", "JOBS")                                        .Update("JobSchedule_Update", "JOBS")                                        .Destroy("JobSchedule_Delete", "JOBS")                                    )                                    .Editable(e => {                                        e.TemplateId("schedulerJobEditor").Window(w => w.Title("Time Slot Reservation").Name("schedulerJobEditor"));                                    })                                )Custom editor code
<script id="schedulerJobEditor" type="text/x-kendo-template">                                    <div>                                        <table style="border-collapse: initial;">                                            <tr>                                                <td align="right">                                                    <label for="Start">Job Date:</label>                                                </td>                                                <td>                                                    <input type="text" id="jobDateTextbox" class="k-input k-textbox" name="start" data-bind="value: StartViewDate" style="border-width: 0px;" disabled="disabled">                                                </td>                                                <td align="right">                                                    <label for="ReservedDate">Reserved On:</label>                                                </td>                                                <td>                                                    <input type="text" id="reservedDateTextbox" class="k-input k-textbox" name="reservedDate" data-bind="value: ReservationViewDate" style="border-width: 0px;" disabled="disabled">                                                </td>                                            </tr>                                            <tr>                                                <td align="right" width="25%">                                                    <label for="StartViewTime">Job Time:</label>                                                </td>                                                <td>                                                    <input type="text" id="jobTimeTextbox" class="k-input k-textbox" name="start" oninput="JobTimeInput()" onblur="JobTimeBlur()" data-bind="value: StartViewTime">                                                    <input type="hidden" id="keyFlagTextbox" class="k-input k-textbox" name="keyflag" data-bind="value: KeyFlag">                                                </td>                                                <td align="right" width="14%">                                                    <label for="ReservedTime">Time:</label>                                                </td>                                                <td>                                                    <input type="text" id="reservedTimeTextbox" class="k-input k-textbox" name="reservedTime" data-bind="value: ReservationViewTime" style="border-width: 0px;" disabled="disabled">                                                </td>                                            </tr>                                            <tr>                                                <td align="right">                                                    <label for="Duration">Duration:</label>                                                </td>                                                <td>                                                    <select name="duration" id="durationDropDownList" onchange="DurationChange()" data-bind="value: Duration">                                                        @foreach (var dur in (List<ServicePROWeb.ServiceProWCFService.TypeMstr>)HttpContext.Current.Session["DurationList"])                                                        {                                                            <option value='@dur.ty_desc'>@dur.ty_desc</option>                                                        }                                                    </select>                                                </td>                                                <td align="right">                                                    <label for="ReservationID">Reservation ID:</label>                                                </td>                                                <td>                                                    <input type="text" id="reservationIDTextbox" class="k-input k-textbox" name="reservationID" data-bind="value: ReservationID" style="border-width: 0px;width:100%" disabled="disabled">                                                </td>                                            </tr>                                            <tr>                                                <td align="right">                                                    <label for="TechName">Tech:</label>                                                </td>                                                <td colspan="3">                                                    <input type="text" class="k-input k-textbox" name="techName" data-bind="value: TechName" disabled="disabled">                                                </td>                                            </tr>                                            <tr>                                                <td align="right">                                                    <label for="Title">Reason for Reservation:</label>                                                </td>                                                <td colspan="3">                                                    <input type="text" class="k-input k-textbox" name="title" data-bind="value: title" style="width: 60%;">                                                </td>                                            </tr>                                            <tr>                                                <td>                                                                                                     </td>                                                <td colspan="3">                                                    <input type="checkbox" id="chkRecurring" data-bind="value: IsRecurring" onmouseup="toggleRecurringDiv()">Recurring Reservation                                                </td>                                            </tr>                                        </table>                                        <br />                                        <div id="divRecurring" style="width: 95%; margin-left: 5px; padding: 10px;display: none;">                                            <input type="radio" class="rdoTech" name="rdoTech" value="c" checked="checked">Current Tech                                            <input type="radio" class="rdoTech" name="rdoTech" value="a" style="margin-left: 15px;">All Techs                                            <span style="margin-left: 24px;">Every: </span><input type="text" id="everyTextbox" class="k-input k-textbox" name="recurrenceNumber" data-bind="value: Frequency">                                            <input type="radio" class="rdoRecurrenceFrequency" name="rdoRecurrenceFrequency" value="d" checked="checked" style="margin-left: 15px;">Day(s)                                            <input type="radio" class="rdoRecurrenceFrequency" name="rdoRecurrenceFrequency" value="w" style="margin-left: 15px;">Weeks(s)                                            <input type="radio" class="rdoRecurrenceFrequency" name="rdoRecurrenceFrequency" value="m" style="margin-left: 15px;">Month(s)                                            <br /><br />                                            <input type="checkbox" id="chkIncludeBusinessDays" data-bind="value: IsNonBusinessDaysIncluded">Include Non-Business Days                                            <label for="UntilDate" style="margin-left: 30px;">Until: </label>                                            <input type="text" id="untilDateTextbox" class="k-input k-textbox" name="UntilDate" data-bind="value: UntilDate">                                            <span style="margin-left: 15px;">(max. 3 months)</span>                                        </div>                                    </div>                                </script>Script for single click. Only startdate and endate are being passed for the new event. How can I pass other resource like "TechName" here.
$(function () {    var scheduler = $("#schedulerJob").data("kendoScheduler");    $("#schedulerJob").on("mouseup touchend", ".k-scheduler-table td, .k-event", function (e) {        target = $(e.currentTarget);        ee=e;        if (target.hasClass("k-event")) {            var event = scheduler.occurrenceByUid(target.data("uid"));            scheduler.editEvent(event);        } else {            slot = scheduler.slotByElement(target[0]);            scheduler.addEvent({                start: slot.startDate,                end: slot.endDate            });        }    });})
Thanks
I have a decimal property in my modal which keeps loosing decimal precision whenever i bind it to Kendo grid.
Here is the example.
If the value is 501.14, grid will display 501.14. (correct)
If the value is 501.10, grid will display 501.1    (wrong, it should have displayed 501.10)
If the value is 501.00, grid will display 501       (wrong, it should have displayed 501.00)
I know i can easily solve this issue by using 'Format' function in the grid, i.e. .Format("{0: n2}") but the issue is i won't know how many decimal places i will be getting during the call so i won't be able be to hard code the value in 'Format' function. Also, i need to display all the decimal places even though it is just 0 at the end i.e .00 or .10.
Any suggestion how i can fix this issue?
Thanks
Avinash
Hello,
tried a simple chart with remote data, but theres no POST to PPM_Read on page load/refresh ...
everything else is working fine, grids, dropdownlist, etc ...
Maybe anyone knows what i'm doin wrong here ?
Greetings, Oliver
Controller:
public ActionResult PPM_Read()
{
var data = db.viewPointCipWqsScrapPartsMonthPPM;
return Json(data, JsonRequestBehavior.AllowGet);
}
View:
@(Html.Kendo().Chart<MapsMvc.Areas.mPointCip.Models.viewPointCipWqsScrapPartsMonthPPM>().Name("chart2")
.Title("WQS")
.Legend(legend => legend
.Position(ChartLegendPosition.Top))
.DataSource(dataSource => dataSource.Read(read => read.Action("PPM_Read", "WQS")))
.Series(series =>
{
series.Column(model => model.PPM).Name("PPM");
})
.CategoryAxis(axis => axis
.Categories(model => model.LastProcess)
.Labels(labels => labels.Rotation(0))
.MajorGridLines(lines => lines.Visible(false))
)
.ValueAxis(axis => axis.Numeric()
.Labels(labels => labels.Format("{0:N0}"))
.MajorUnit(1000)
.Line(line => line.Visible(true))
.Max(10000)
)
.Tooltip(tooltip => tooltip
.Visible(true)
.Format("{0:N0}")
)
)