Вы можете использовать обратный вызов ajaxResponse , чтобы изменить ответ перед его передачей в таблицу для обработки.
Я предполагаю, что вы хотите передать запись свойство:
var table = new Tabulator("#example-table", {
height:"311px",
layout:"fitColumns",
placeholder:"No Data Set",
columns:[
{title:"PO", field:"po_number", sorter:"string", width:200},
],
ajaxResponse:function(url, params, response){
//url - the URL of the request
//params - the parameters passed with the request
//response - the JSON object returned in the body of the response.
return response.record; //return the recordproperty of a response json object
},
});
Надеюсь, это поможет,
Приветствия
Оли:)