This section briefly explains about how to create a simple Chip in your ASP.NET Core application. You can refer ASP.NET Core Getting Started documentation page for introduction part of the system requirements and configure the common specifications.
To create simple Chip
add the ejs-chiplist
tag with id attribute as element
in your Index.cshtml page.
<ejs-chiplist id="chip" text="Janet Leverling"></ejs-chiplist>
After successful compilation of your application, simply press F5
to run the application.
The following example shows a default rendering of Chip.
<ejs-chiplist id="chip" text="Janet Leverling"></ejs-chiplist>
public IActionResult Index()
{
return View();
}
Output be like the below.