Kendo Grid Date is null for 13/06/2015 all dates after 12

83 Views Asked by At

My grid:

@(Html.Kendo().Grid<IBATechnologies.IBA.Web.Models.AssetTransactionDetailViewMod    el>()
    .Name("transactionGrid")
    .Pageable()
    //.Editable(editable=>editable.Mode(GridEditMode.InLine))
    .Columns(colums =>
    {
        colums.Bound(p => p.assetCode).Width(100);
        colums.Bound(p => p.assetDesc).Width(100);
        colums.Bound(p => p.remark).Width(100);
        colums.Bound(p => p.currencyCode).Width(100);
        colums.Bound(p => p.rate).Width(100);
        colums.Bound(p => p.currencyRate).Width(100);
        colums.Bound(p => p.lcyAmount).Width(100);
        colums.Bound(p => p.documentDate).Width(100);
        colums.Command(command => { command.Destroy(); }).Width(100);
    })
    .ToolBar(toolbar => toolbar.Create())
    .Editable(editable => editable.Mode(GridEditMode.InCell))
    .DataSource(dataSource => dataSource
        .Ajax()
        .PageSize(20)
        .ServerOperation(false)
        .Model(model => model.Id(p => p.assetCode))
        .Create(update => update.Action("TransactionDoc_Create", "AssetTransaction"))
        .Read(read => read.Action("TransactionDoc_Read", "AssetTransaction", new { docno = 0 }))
        .Update(update => update.Action("BrandEditingPopup_Update", "AssetTransaction"))
        .Destroy(update => update.Action("BrandEditingPopup_Destroy", "AssetTransaction"))
    )
)

My grid is shown above. When I try to edit, all the dates after 12 are returned as null. Please help me.

2

There are 2 best solutions below

0
On BEST ANSWER

This appears to be a culture issue. Try changing your Kendo UI culture (by including one of the other culture JS files. You may also need to change the culture on the server

0
On
<script   src="@Url.Content("~/Scripts/kendo/2015.1.429/cultures/kendo.culture.en-GB.min.js")"></script>
<script>
   kendo.culture("en-GB");
</script>