Send hidden data server side
Send hidden data server side
johngtrs
Posts: 33Questions: 2Answers: 0
Hi,
There is another way to send a hidden data instead of send by hidden column ?
serverSide: true,
ajax: {
url: '/MyPath/...',
method: 'POST'
},
columns: [
{data: "usersId", searchable: false},
{data: "username"},
{data: "email"},
{data: "groupsName", searchable: false},
{data: updateUser, searchable: false, orderable: false},
{data: deleteUser, searchable: false, orderable: false},
{data: "hidden_id"}
]
I want to use hidden_id but I don't want to display it in my table.
This discussion has been closed.