Syncfusion.AspNetMvc.DropDowns 34.1.30

Prefix Reserved
dotnet add package Syncfusion.AspNetMvc.DropDowns --version 34.1.30
                    
NuGet\Install-Package Syncfusion.AspNetMvc.DropDowns -Version 34.1.30
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Syncfusion.AspNetMvc.DropDowns" Version="34.1.30" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.AspNetMvc.DropDowns" Version="34.1.30" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.AspNetMvc.DropDowns" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Syncfusion.AspNetMvc.DropDowns --version 34.1.30
                    
#r "nuget: Syncfusion.AspNetMvc.DropDowns, 34.1.30"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Syncfusion.AspNetMvc.DropDowns@34.1.30
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Syncfusion.AspNetMvc.DropDowns&version=34.1.30
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.AspNetMvc.DropDowns&version=34.1.30
                    
Install as a Cake Tool

Syncfusion® ASP.NET MVC Dropdown Components

A comprehensive suite of ASP.NET MVC dropdown and selection components for building modern interactive user interfaces. Includes AutoComplete, ComboBox, DropDownList, MultiSelect DropDown, ListBox, DropDownTree, and Mention components.

Supported Components

This package includes the following components:

ASP.NET MVC AutoComplete Component

The ASP.NET MVC AutoComplete Component provides suggestions as you type with filtering and highlighting capabilities.

Key Features:

  • Auto Suggestions: Real-time suggestions while typing
  • Filtering: Advanced filtering and search capabilities
  • Custom Templates: Template support for custom rendering
  • Grouping: Group suggestions by category
  • Keyboard Navigation: Full keyboard accessibility
  • Highlight Matching: Highlight search terms in results
  • Remote Data: Support for remote data sources

Documentation

ASP.NET MVC ComboBox Component

The ASP.NET MVC ComboBox Component allows custom value entry in addition to selection from a predefined list.

Key Features:

  • Custom Entry: Allow custom values alongside predefined options
  • Filtering: Real-time filtering and search
  • Data Binding: Support for local and remote data
  • Templates: Custom item templates
  • Keyboard Navigation: Full keyboard support
  • Readonly Mode: Optional readonly dropdown selection
  • Cascading: Support for cascading combboxes

Documentation

ASP.NET MVC DropDownList Component

The ASP.NET MVC DropDownList Component provides single-select dropdown functionality with advanced features.

Key Features:

  • Single Selection: Simple single-item selection from list
  • Filtering: Fast filtering and search capabilities
  • Grouping: Group related items together
  • Item Templates: Custom templates for complex layouts
  • Virtualization: Handle large datasets efficiently
  • Keyboard Navigation: Arrow key and keyboard support
  • Cascading: Support for dependent dropdowns

Documentation

ASP.NET MVC MultiSelect DropDown Component

The ASP.NET MVC MultiSelect DropDown Component allows selection of multiple values with multiple selection modes.

Key Features:

  • Multiple Selection: Select multiple items from list
  • Selection Modes: Checkbox, tag, and box modes
  • Filtering: Filter items while selecting
  • Grouping: Group items for organized selection
  • Custom Templates: Customize dropdown appearance
  • Show Selected: Display selected items as tags or custom format
  • Delimiter Support: Custom delimiter for value separation

Documentation

ASP.NET MVC ListBox Component

The ASP.NET MVC ListBox Component displays list items for single or multiple selection with advanced features.

Key Features:

  • Single/Multiple Selection: Flexible selection modes
  • Drag and Drop: Reorder items with drag-and-drop
  • Templates: Custom templates for complex items
  • Grouping: Group items by category
  • Keyboard Navigation: Full keyboard support
  • Data Binding: Support for various data sources
  • Sorting: Built-in sorting capabilities

Documentation

Syncfusion® ASP.NET MVC Mention Component

The ASP.NET MVC Mention Component enables @mention style tagging inside any editable content area — such as comment boxes, rich text editors, or chat inputs — by triggering a suggestion popup when the user types a configured trigger character.

Key Features:

  • Trigger Character: Configurable mention character (default @, can be set to # or any symbol)
  • Show Mention Char: Optionally display the trigger character inline with the selected value via showMentionChar
  • Data Binding: Support for local string arrays, object lists, and remote data via DataManager
  • Field Mapping: Map separate text and value fields from complex data objects
  • Item Templates: Custom popup item rendering with HTML templates
  • Display Templates: Custom format for how the tagged value appears in the editor
  • Filtering: Real-time suggestion filtering as the user types after the trigger character
  • Popup Sizing: Configurable popupHeight and popupWidth for the suggestion list
  • Target Binding: Attach to any contenteditable div or text input via the target property
  • Suffix Text: Append a custom character after the inserted mention value

Documentation

Common Setup

These setup steps are required only once for your application, regardless of which Syncfusion components you use.

1. Install Base NuGet Package

Install-Package Syncfusion.AspNetMvc.DropDowns

2. Add Namespace Reference

Edit Web.config under the Views folder and add the Syncfusion.EJ2 namespace:

<namespaces>
    <add namespace="Syncfusion.EJ2"/>
</namespaces>

3. Add Stylesheet & Script References

In your layout file (~/Views/Shared/_Layout.cshtml), add the following in the <head> section:

<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>@ViewBag.Title - Syncfusion Application</title>
    
    
    <link rel="stylesheet" href="https://cdn.syncfusion.com/ej2/34.1.30/fluent2.css" />
    
    
    <script src="https://cdn.syncfusion.com/ej2/34.1.30/dist/ej2.min.js"></script>
</head>

4. Register Script Manager

At the end of the <body> tag in your layout file (~/Views/Shared/_Layout.cshtml):

<body>
    @RenderBody()
    
    
    @Html.EJS().ScriptManager()
</body>

Quick Start

Step 1: Add ASP.NET MVC Dropdowns control

Add the Syncfusion® ASP.NET MVC Dropdowns control ~/Views/Home/Index.cshtml page:


@Html.EJS().DropDownList("dropdown")
    .DataSource(new string[] { "Badminton", "Baseball", "Basketball", "Cricket", "Football" })
    .Placeholder("Select Sport")
    .Render()


@Html.EJS().ComboBox("combobox")
    .DataSource(new string[] { "JavaScript", "C#", "Python", "Java", "C++" })
    .Placeholder("Select Language")
    .Render()


@Html.EJS().AutoComplete("autocomplete")
    .DataSource(new string[] { "Apple", "Apricot", "Banana", "Blueberry", "Cherry", "Date" })
    .Placeholder("Search fruits")
    .Render()


@Html.EJS().MultiSelect("multiselect")
    .DataSource(new string[] { "Google", "Apple", "Amazon", "Microsoft", "Facebook" })
    .Placeholder("Select Companies")
    .Render()


@Html.EJS().ListBox("listbox")
    .DataSource(new string[] { "Option 1", "Option 2", "Option 3", "Option 4" })
    .Render()


@Html.EJS().Mention("mention")
    .DataSource(new string[] { "John", "Jane", "Jack", "Jim", "Jill" })
    .Render()

Step 2: Run the Application

Press Ctrl+F5 to run the application in your browser.

Support

License

This is a commercial product and requires a paid license for possession or use. Review the Syncfusion® EULA

About Syncfusion®

Syncfusion® provides 1600+ UI components and frameworks for web, mobile, and desktop development across multiple platforms:

Web: Blazor | ASP.NET MVC | ASP.NET MVC | JavaScript | Angular | React | Vue

Mobile: Flutter | MAUI | UWP

Desktop: WinForms | WPF | WinUI

Learn more at www.syncfusion.com

sales@syncfusion.com | Toll Free: 1-888-9-DOTNET

Product Compatible and additional computed target framework versions.
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Syncfusion.AspNetMvc.DropDowns:

Package Downloads
Syncfusion.AspNetMvc.Navigations

Syncfusion® ASP.NET MVC Navigations package provides a comprehensive collection of navigation controls including Accordion, Context Menu, Menu Bar, Sidebar, Tabs, Toolbar, TreeView, Ribbon, Breadcrumb, Carousel, AppBar, and Stepper. These controls enable intuitive and accessible page navigation with features like keyboard navigation, RTL support, responsive design, data binding, templates, and animation. They are designed to enhance user experience in complex, multi-page ASP.NET MVC web applications.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
34.1.30 0 7/9/2026
34.1.29 199 7/6/2026