I am using this slider on a page in my asp.net webforms application. The slider users jQuery to simply open and close a div on the page. The content in this slider div is an asp.net repeater that lists a bunch of Link buttons.
I have a grid in the main div on my page.
When a link button is clicked in the LinkButton_OnClick server-event I am calling rebind on the grid and updating the datasource to be filtered by the value that they clicked on.
Can someone give me an idea of how I can keep the slider open and still rebind the grid?
I already trying wrapping the slider div in an ASP.NET Panel and wrapping the grid div in an ASP.NET Panel. Then using a Telerik:RadAjaxManager to say that pnlSlider updates pnlGrid, but I am still getting a page refresh instead of Ajax being used.