BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
public void ConfigureServices(IServiceCollection services)
{
services.AddRazorPages();
services.AddServerSideBlazor();
services.AddSingleton<WeatherForecastService>();
services.AddSyncfusionBlazor();
services.AddSignalR(e =>
{
e.MaximumReceiveMessageSize = 1024000;
});
}
|
<EjsComboBox @ref="comboboxObj" Placeholder="--Select--" TValue="long"
DataSource="@Customers.Select(c => new { Value = c }).ToList()"
Query="@query" AllowFiltering="true">
<ComboBoxFieldSettings Text="Company" Value="CustomerID"></ComboBoxFieldSettings>
</EjsComboBox>
@code
{
EjsComboBox<long> comboboxObj;
public string query = "new ej.data.Query().select(['value']).take(10)";
public List<long> Customers = Enumerable.Range(0, 10000).Select(c => (long)c).ToList();
} |