0

Is there any way to check for a value in any of the row/column of the dataTable without using search ? Search on the data is filtering the displayed rows and I don't want them to be filterer. I just want to check if the value exists or not

1 Answer 1

1

Absolutely. Using the cell().data() API call you can get/set cell data like this:

Get

 var cellData = Table.cell(rowIndex, columnIndex).data();

Set

Table.cell(rowIndex, columnIndex).data() = cellData;
Sign up to request clarification or add additional context in comments.

1 Comment

Interesting. So the only way to search the data in entirety is to loop through it?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.