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.
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