I am new to MVC and am participating in a project developed using ASP.NET MVC 1.0. I am also weak in JavaScript: - (
I am trying to show how the Master Parts view works with the Orders and Order Details tables from the Northwind database. (Therefore: the tables are relevant, that is, the order may have several order details)
I created two controls (1st for Orders, 2nd for OrderDetails). I displayed all the orders from the Orders table as a List. As soon as I click on one of the orders, it will take me to the Details view of this order.
What I want to do (& failed) is to create a submatrix under the "Details" view for the order, which lists all the order details for this order.
I also want to change the contents of the subtitle based on the selection from the main view. I read a lot about using AJAX and JSON to dynamically change this, but I was also unable to do this: '(
Can anyone help with this and provide me with the technique and code of how I can implement it?
user152861
source
share