multiple "tables" on a single blazor page

Dan Henderson 31 Reputation points
2021-08-20T23:22:08.397+00:00

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.

Blazor
Blazor
A free and open-source web framework that enables developers to create web apps using C# and HTML being developed by Microsoft.
1,396 questions
0 comments No comments
{count} votes

Accepted answer
  1. Zhi Lv - MSFT 32,016 Reputation points Microsoft Vendor
    2021-08-21T03:17:02.093+00:00

    Hi @Dan Henderson ,

    Yes, you can display multiple tables in the single Blazor page, and after changing the selected row you can show the relates entities in the same page.

    Please refer the following sample:

    Create the following models: the Department and Employee table has one to many relationship.

    public class Department  
    {  
        public int DepId { get; set; }  
        public string DepName { get; set; }  
        public string Description { get; set; }  
        public List<Employee> Employees { get; set; }  
    }  
    public class Employee  
    {  
        public int EmpId { get; set; }  
        public string EmpName { get; set; }  
        public string Email { get; set; }  
        [ForeignKey("Department")]  
        public int DepId { get; set; }  
        public Department Department { get; set; }  
    }  
    

    Then in the Reazor component (FetchData.razor):
    First, we could display the Department list, then, after select the department, we could find the related Employees based on the select department id.

    125231-image.png

    Sorry about that the html editor has something wrong, so I can't directly post the razor page code, more detail code, you can download it from 125221-featchdata.txt

    The result as below:

    125211-3.gif

    In the above sample, I'm using the radio button to select the row, you can also attach onclick event to the <tr> tag, more detail information about the event handling, see ASP.NET Core Blazor event handling.


    If the answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Best regards,
    Dillion

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful