BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
@using Syncfusion.EJ2.RazorComponents
@using Syncfusion.EJ2.RazorComponents.Lists
|
<EjsListView enable="true" id="listview" dataSource=@data></EjsListView>
@functions{
object[] data =
{
new { text= "Artwork", id= "01" },
new { text= "Abstract", id= "02" },
new { text= "Modern Painting", id= "03" },
new { text= "Ceramics", id= "04" },
new { text= "Animation Art", id= "05" },
new { text= "Oil Painting", id= "06" }
};
}
|