Hello all,
I have updated our application to use Kendo version 2013.1.226 beta that you released. It seems that the new update has broken the Grid BatchEditing feature. In particular, when I click on "Save Changes" button I get the following error:
GET http://localhost:5818/Settings/Editing_Update?models%5B0%5D%5BId%5D=f452ada…e%5D=Sir+de+test+trtrtrrtrtrtrt3434343434&models%5B0%5D%5BDecimalValue%5D= 404 (Not Found)
Both grid and server side setup are made:
Cshtml page
.DataSource(dataSource => dataSource
.Ajax()
.Batch(true)
.ServerOperation(false)
.Model(model => { model.Id(s => s.Id); model.Field(s => s.Name).Editable(false); })
.Read("Editing_Read", "Settings", new { type = MF.Model.SettingType.Decimal })
.Update("Editing_Update", "Settings")
.Create("Editing_Create", "Settings")
)
Controller code:
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Editing_Update([DataSourceRequest] DataSourceRequest request, [Bind(Prefix ="models")]IEnumerable<Entity> settings)
{
//code
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Editing_Create([DataSourceRequest] DataSourceRequest request, [Bind(Prefix = "models")]IEnumerable<Entity> products)
{
//code
}
The above code used to work before making the upgrade to Kendo version 2013.1.226 beta.
Can you please check this behavior.
Thank you in advance!
Best regards,
Razvan
I have updated our application to use Kendo version 2013.1.226 beta that you released. It seems that the new update has broken the Grid BatchEditing feature. In particular, when I click on "Save Changes" button I get the following error:
GET http://localhost:5818/Settings/Editing_Update?models%5B0%5D%5BId%5D=f452ada…e%5D=Sir+de+test+trtrtrrtrtrtrt3434343434&models%5B0%5D%5BDecimalValue%5D= 404 (Not Found)
Both grid and server side setup are made:
Cshtml page
.DataSource(dataSource => dataSource
.Ajax()
.Batch(true)
.ServerOperation(false)
.Model(model => { model.Id(s => s.Id); model.Field(s => s.Name).Editable(false); })
.Read("Editing_Read", "Settings", new { type = MF.Model.SettingType.Decimal })
.Update("Editing_Update", "Settings")
.Create("Editing_Create", "Settings")
)
Controller code:
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Editing_Update([DataSourceRequest] DataSourceRequest request, [Bind(Prefix ="models")]IEnumerable<Entity> settings)
{
//code
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Editing_Create([DataSourceRequest] DataSourceRequest request, [Bind(Prefix = "models")]IEnumerable<Entity> products)
{
//code
}
The above code used to work before making the upgrade to Kendo version 2013.1.226 beta.
Can you please check this behavior.
Thank you in advance!
Best regards,
Razvan