Posted 17 January 2024, 8:05 pm EST
Hello,
I am using BatchEdit, after calling BatchEdit, the flexgrid will be reloaded, but I don’t want to reload the flexgrid because I am loading the flexgrid using ajax. I see the function below is forcing data to be returned to flexgrid. Is there any way to not reload?
please help me!
public ActionResult GridBatchEdit([C1JsonRequest]CollectionViewBatchEditRequest<Customer> requestData)
{
return this.C1Json(CollectionViewHelper.BatchEdit<Customer>(requestData, batchData =>
{
................
return new CollectionViewResponse<Customer>
{
Error = error,
Success = success,
OperatedItemResults = itemresults
};
}, () => db.Customers.ToList<Customer>()));
}