Loading...
This page is currently under construction yet.
Contact

Displaying Entity

From the perspective of the RecroGrid Framework, displaying an entity encompasses presenting the list associated with the entity collection, as well as showing a specific data record in detail within a Form view.

During the installation, it was configured for the Router to use the RGF AdditionalAssembly, and the Layout includes the RgfRootComponent. As a result, when navigating to the /rgf/entity/{Entity Name} page in the @Body, the desired entity is displayed.

<Router AppAssembly="@typeof(App).Assembly"
        AdditionalAssemblies="new[] { typeof(Recrovit.RecroGridFramework.Client.Blazor.Components.RgfEntityComponent).Assembly }">
@inherits LayoutComponentBase

<RgfRootComponent >
    @Body
</RgfRootComponent>

See Also