I have the below code to attempt to ajaxify my grid and subsequent detail panel. It works but the trouble is when I click my "select" link on a row, the style doesn't change to selected row as I have not re-drawn the grid (grid not part of the updated controls list). I do this intentionally because I don't want to reload the entire grid if no data has changed (it is simply a row selection). The grid also has sorting enabled which does not function unless I add the grid to the updated control list. So the question is, how to I retain server sorting control but also allow simple row selection without having to pull the whole grid down again?
Thanks
<AjaxSettings> <telerik:AjaxSetting AjaxControlID="rgMemberList"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="pnlMemberDetail" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings>