Add demo for proof of concept

This commit is contained in:
Stuart Turner
2023-09-26 12:20:37 -05:00
parent a5de297b5d
commit 7e4d037de3

View File

@@ -67,6 +67,25 @@
</EditTemplate>
</RadzenDataGridColumn>
</Columns>
<Template Context="order">
<RadzenCard Style="margin-bottom:20px">
<b>Address</b>: <br />
@order.ShipAddress <br />
@order.ShipCity @order.ShipRegion @order.ShipPostalCode @order.ShipCountry
</RadzenCard>
</Template>
<EditTemplate Context="order">
<RadzenCard Style="margin-bottom:20px">
<b>Address</b>: <br />
<RadzenTextBox @bind-Value="order.ShipAddress" Style="width:100%;" /> <br />
<RadzenTextBox @bind-Value="order.ShipCity" />
<RadzenTextBox @bind-Value="order.ShipRegion" />
<RadzenTextBox @bind-Value="order.ShipPostalCode" />
<RadzenTextBox @bind-Value="order.ShipCountry" />
</RadzenCard>
</EditTemplate>
</RadzenDataGrid>
@code {