Hi,
We use a framework that wrap every ajax response. Instead to have this :
AggregateResults: nullData: [{Name: "name1", Title: "M.",},…]Errors: nullTotal: 4the response from controller method are :
error: nullresult: {data: [{name: "name1", tile: "M."},…], total: 4,…}success: trueunAuthorizedRequest: false
I would like to use a javascript function so that can manipulate the ajax response and extract the data before passing it to the Grid.
Is there a way to achieve that? Thank you.