My situation is very common. I have a master detail environment on my web administration. I need to be able to select one record among around 3500 from a dialog.
This is the reason why I need pagination. My implementation is using JQuery Dialog and MVC 3 partial View in it. I need the possibility to refresh the contents of the already opened JQuery dialog without refreshing the underline page.
After any page click on the partial View in the JQuery dialog
<dt>
<a href="/News/SelectArtist?PageId=2">B</a>
</dt>
<dt>
<a href="/News/SelectArtist?PageId=3">C</a>
</dt>
My page has been refreshed and the the JQuery dialog disapeared.
Is there some kind of solution for this situation ?