I've got a strongly typed partial view that shows rows from a table. I've got another strongly typed partial view that, based on what row is clicked in the first view, displays derived foreign key info.
I want this data to show without reloading the whole page. I'll have to query a database in my controller to do this.
I've heard of divs being reloaded, but not strongly typed partial views. Should I use jquery or ajax? Is there any way I can avoid using either?
I've already got bundling set up.
Here's the action I've already got that reloads the whole page
<tr onclick="location.href = '@(Url.Action("ReloadPartialDetails", "MyClassController", new { ID = item.ID }))'">