I have a radgrid on page and i bind data on serverside. Bydefault sorting is set to false on grid. But on click of a checkbox on a container page, I want to sort grid data on specific column. for example below, on click of a checkbox I want to sort my data as Active customer on top or Inactive customers on top. How would I do that on clientside.? Can I enable sorting on individual column only?
| ID | Name | Total Orders | Active |
| 1 | Customer 1 | 9 | TRUE |
| 2 | Customer 2 | 11 | FALSE |
| 3 | Customer 3 | 2 | FALSE |
| 4 | Customer 4 | 20 | TRUE |
| 5 | Customer 5 | 31 | TRUE |
