I currently have a web page with a jquery datagrid, multiple child divs on the right, and a tab control below the grid with 6 tabs, each tab shows data from a different table. When a row in the data grid is selected all of the child divs and tabs display specific data related to the "master" record selected in the grid.
This is all driven by javascript, so it is pretty straight forward in its coding and layout. My question is "can I do this with a blazor page"? The whole application at the moment is an MVC web application with SQL Server and hosted on a Windows machine. I would like to move the front end to blazor if possible.
Thanks in advance.

