How to remove/ hide row in render function ?
How to remove/ hide row in render function ?
Sanit Kale
Posts: 23Questions: 9Answers: 0
{ "data": "school",
"render": function (data, type, row, meta) {
if(data!=' my schoool')
return "valid";
else
return ' ';// i need to hide that particular row here
}
},
So i need to hide or remove that particular row in else condition
This discussion has been closed.
Answers
The place to do something like that is with a Search Plugin.
Kevin