Currently I have a table on my page which I need to refresh using Ajax. I was intending to render the table in a partial view and then just call an MVC render-partial update, which would have been nice and simple.
However, I've since added a bunch of sorting/filtering controls in the header of the table. I would now like to refresh the content of the table without losing this information in the header rows.
I'm not sure what the cleanest solution to this is. My table will probably contain around 500 rows. Could someone offer some advice? Thanks