I need to find the index of the row that contains certain information in the 1st column.I tried to solve this problem with such code.
var table=$('#goods').DataTable();
var row=table.search(id_good);
var i=table.row(row).index;
But I didn’t succeed. Where did I make a mistake?