I need to represent a table containing data about some tests and their results.
There are over 100K tests and several results per test.
It needs to show the results of tests made for a device.
One idea is to retrieve data from the server and
represent it using jqGrid.
--------------------------
device |
--------------------------
| version1 |version2|
testA| failed | Passed |
testB|... | ... |
. |
. |
. |
-------------------------|
Which of the following methods would be the best way to dynamically retrieve and represent the data and why? :
Retrieve all data from the server and filter it using jquery and javascript.
Retrieve filtered data from server and just represent it.