I want to add per row delivery_id value in render .
I think what you are asking for is the data contained in the meta parameter of the columns.render function. Specifically meta.row. If this doesn't help then please provide more details of what you want.
columns: [
{data: 'delivery-id'},
...............
{data: 'Actions', reponsivePriority: -1,
render: function (data, type, row) {
==> here you can use "row.delivery_id" in
your code as is suitable for you
},
orderable: false
},
.....
Answers
I think what you are asking for is the data contained in the
meta
parameter of thecolumns.render
function. Specificallymeta.row
. If this doesn't help then please provide more details of what you want.Kevin
Somethiing like:
I am getting this undefined value
@rf1234 @kthorngren
If you follow my example it should work. Try not to use “meta“.