0
Я хотел бы получить доступ к собственности из другого столбца с данными datatables.Datatables ColumnDefs Доступ к данным разных столбцов?
Например:
columnDefs: [
{
"targets": 4,
"data": "default_price_with_discount",
"sClass": "text-center",
"render": function (data, type, full, meta) {
return '<strong>' + data + '</strong>';
}
},
{
"targets": 5,
"data": "default_bonus",
"sClass": "text-center",
"render": function (data, type, full, meta) {
// how can i acccess here column 4?
return '<strong>' + data + '</strong>';
}
},
Любые идеи, как получить доступ к колонке 4 из колонки 5, например?