This section briefly explains how to include a TextBox Component in your Blazor client-side application. You can refer to the Getting Started with Syncfusion Blazor for Client-side in Visual Studio 2019 page for introduction and configure the common specifications.
Syncfusion.Blazor
NuGet package to the application by using the NuGet Package Manager
.Please ensure to check the
Include prerelease
option for our Beta release.
<head>
<link href="_content/Syncfusion.Blazor/styles/bootstrap4.css" rel="stylesheet" />
@*<link href="https://cdn.syncfusion.com/blazor/{{version}}/styles/{{theme}}.css" rel="stylesheet" />*@
</head>
For Internet Explorer 11 kindly refer the polyfills. Refer the documentation for more information.
<head>
<link href="_content/Syncfusion.Blazor/styles/bootstrap4.css" rel="stylesheet" />
<script src="https://github.com/Daddoon/Blazor.Polyfill/releases/download/3.0.1/blazor.polyfill.min.js"></script>
</head>
Open ~/_Imports.razor
file and import the Syncfusion.Blazor.Inputs
packages.
@using Syncfusion.Blazor.Inputs
Open the Startup.cs file and add services required by Syncfusion components using services.AddSyncfusionBlazor() method. Add this method in the ConfigureServices function as follows.
using Syncfusion.Blazor;
namespace BlazorApplication
{
public class Startup
{
....
....
public void ConfigureServices(IServiceCollection services)
{
....
....
services.AddSyncfusionBlazor();
}
}
}
To enable custom client side resource loading from CRG or CDN. You need to disable resource loading by
AddSyncfusionBlazor(true)
and load the scripts in the HEAD element of the ~/Pages/_Host.cshtml page.
<head>
<script src="https://cdn.syncfusion.com/blazor/18.2.44/syncfusion-blazor.min.js"></script>
</head>
To initialize the TextBox component add the below code to your Index.razor
view page which is present under ~/Pages
folder.
<SfTextBox Placeholder='First Name'></SfTextBox>
After successful compilation of your application, press F5
to run the application.
The output will be as follows.
You can create a TextBox with icon as a group by creating the parent div
element with the class e-input-group
and add the icon element as span with the class e-input-group-icon
.
<div class='e-input-group'>
<input class='e-input' Placeholder='Date of Birth' type='text'>
<span class='e-input-group-icon e-input-calendar'></span>
</div>
<style>
.e-input-group-icon:before {
font-family: e-icons;
}
.e-input-group .e-input-group-icon.e-input-calendar {
font-size: 16px;
}
.e-input-group-icon.e-input-calendar:before {
content: "";
}
</style>
The output will be as follows.
The floating label TextBox floats the label above the TextBox after focusing, or filled with value in the TextBox. You can create the floating label TextBox by using the FloatLabelType
API.
<SfTextBox Placeholder='First Name' FloatLabelType='@FloatLabelType.Auto'></SfTextBox>
The output will be as follows.