You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
451 B
25 lines
451 B
@page "/inventory"
|
|
@using System.Globalization
|
|
@using BlazorApp1.Components
|
|
@using BlazorApp1.Models
|
|
|
|
<PageTitle>Inventory</PageTitle>
|
|
|
|
<div>
|
|
<InventoryComponent Items="Items"/>
|
|
</div>
|
|
|
|
<DataGrid TItem="Item"
|
|
Data="@Items"
|
|
ReadData="@OnReadData"
|
|
TotalItems="@totalItem"
|
|
PageSize="10"
|
|
ShowPager
|
|
Responsive>
|
|
</DataGrid>
|
|
|
|
<p>
|
|
<b>CurrentCulture</b>: @CultureInfo.CurrentCulture
|
|
</p>
|
|
|