Como llenar la tabla

Como llenar la tabla

FerchoeFerchoe Posts: 1Questions: 1Answers: 0
edited February 2023 in Free community support

Estoy intentando llenar la tabla con Server-side processing pero no logro que funcione, todo va bien asta el data trae los datos bien pero cuando llega a dataFilter no toma la respuesta y falla
agradezco su colaboración

I'm trying to fill the table with server side processing but I can't get it to work, everything is fine until the data fetches the data fine but when it gets to dataFilter it doesn't take the response and fails
I appreciate your collaboration

$('#tbElemItems').DataTable({
"processing": true,
serverSide: true,
ajax: {
data: function (dtParms) {
return JSON.stringify(CrearPedido2.Info(JSON.stringify(dtParms),1).value)
} ,
dataFilter: function (res) {
var parsed = JSON.parse(res);
return JSON.stringify(parsed.d);
}
}
});

Answers

Sign In or Register to comment.