Do not show identical rows
Do not show identical rows
Rachel Pfeiffer Leverage
Posts: 5Questions: 3Answers: 0
in Editor
Link to test case:
Student | Mentor |
---|---|
Janet | Mark |
Janet | Mark |
Eli | Emma |
Description of problem:
I don't want to show identical rows. How do I filter them out (preferably server-side, but client-side will do if necessary)?
This question has an accepted answers - jump to answer
Answers
Not sure what your server side is but if you are using SQL you could use select distinct. This would be better than client side. In the client you would loop the array and build a new array with the unique rows then apply those rows to the Datatable.
Kevin
This example here might help - this is showing how on the client you can massage the data, such as removing those duplicate records.
Colin
Wow - thank you both!