Hi,
We are using devexpress gridview in our MVC application. We want to assign a default value to the "Key" field from "BatchEditStartEditing" event when the new button is pressed. We have written the below code for that. We are able to see the value coming in the key field when debugging from the browser(Attaching the screen shot). But after the page loads completely the cell value is becoming blank. Please check the below code and let us know if we are missing anything
Razor@model System.Data.DataTable
@Html.DevExpress().GridView(settings => {
settings.Name = "GridView";
settings.CallbackRouteValues = new {Action="GridViewPartial",Controller="Home"};
settings.KeyFieldName = Model.Columns\[0\].ColumnName;
settings.ClientSideEvents.BatchEditStartEditing = "OnStartEdit";
foreach (System.Data.DataColumn column in Model.Columns) {
settings.Columns.Add(column.ColumnName);
}
settings.CommandColumn.Visible = true;
settings.CommandColumn.ShowNewButton = true;
settings.CommandColumn.ShowDeleteButton = true;
settings.SettingsEditing.Mode = GridViewEditingMode.Batch;
settings.SettingsEditing.BatchUpdateRouteValues = new { Action="BatchUpdateAction", Controller = "Home"};
}).Bind(Model).GetHtml()
JavaScript<script type="text/javascript">
var text = "";
function OnStartEdit(s, e) {
if (e.visibleIndex < 0) {
s.batchEditApi.SetCellValue(e.visibleIndex, "Key", (999998 - e.visibleIndex), null, true);
}
}
</script>