Hi
We’re making an MVC website but we want everything done by the server. Is there an ability to ‘fake’ the sort functionality of the grid? This means that the UI is updated from the grid when clicking on a column header, but that the sorting functionality is disabled.
So when i click on the header of the column, i want to do:
– update the UI of the column (like there is sorted but the list itself must not be sorted => disable that the content of the grid will be changed)
– ask for every column if the column is sorted (by this way i can do multisort) and put this in a array or something and then pass it to the controller by ajax and when the ajax succeeded, refresh the gridData.
So how can i fake the UI of a column that is sorted?
We do everything with our own queries so the grid itself should not have a lot of functionality but only display how the data is composed.