BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<EjsGrid id="Grid" DataSource="@gridData" Height="100%" >
<GridColumns>
<GridColumn Field="OrderID" HeaderText="Order ID" IsPrimaryKey="true" TextAlign="@TextAlign.Right" Width="120"></GridColumn>
. . . .
</GridColumns>
</EjsGrid>
@functions {
public object gridData { get; set; }
protected override void OnInit()
{
gridData = OrdersDetails.GetAllRecords();
}
}
|
<div class="flex-container">
<EjsGrid @ref="Grid" Height="100%" Width="100%" DataSource="@Orders" AllowPaging="true">
. . . . . . . . . . . ..
</EjsGrid>
</div>
<style>
.flex-container {
display: flex;
height: 500px;
width: 700px;
}
</style>
@code{ |