- Core Lab
- ActionSheetUpdated
- AI Prompt
- AppBar
- Arc Gauge
- Area Charts
- AutoComplete
- Avatar
- Badge
- Bar Charts
- Barcode
- BottomNavigation
- Box Plot Charts
- Breadcrumb
- Bubble Charts
- Bullet Charts
- Button
- ButtonGroup
- Calendar
- Captcha
- Cards
- ChartUpdated
- Chart API
- Chart Wizard
- Chat
- CheckBox
- CheckBoxGroup
- Chip
- ChipList
- Circular Gauge
- Circular ProgressBar
- ColorGradient
- ColorPalette
- ColorPicker
- ComboBox
- DataSource
- DateInput
- DatePicker
- DateRangePicker
- DateTimePicker
- Diagram
- Dialog
- DockManager
- Donut Charts
- Drag and Drop
- Drawer
- DrillDown Charts
- DropDownButton
- DropDownList
- DropDownTree
- EditorUpdated
- Expansion Panel
- FileManagerUpdated
- Filter
- FlatColorPicker
- FloatingActionButton
- FormUpdated
- Funnel Charts
- Gantt
- GridUpdated
- Overview
- Basic Usage
- TagHelper
- Data Binding
- Exporting
- Data Editing
- Scrolling
- Filtering
- Functionality
- Group Paging of Remote Data
- ToolBar ToolsNew
- Server Grouping with Virtualization
- Sorting
- Search Panel
- Selection
- Selection Aggregates
- Checkbox Selection
- Aggregates
- Paging
- Pager Functionality
- Hierarchy
- State Persistence
- Responsive Columns
- Hidden Grouped Columns
- Drag and Drop
- Sizing
- Context Menu
- Row & Column Spanning
- Row Resizing
- Paste from Excel
- Chart Integration
- Templates
- Columns
- API
- Accessibility and Internationalization
- GridLayout
- HeatMap
- ImageEditorUpdated
- Line Charts
- Linear Gauge
- ListBox
- ListView
- Loader
- Map
- MaskedTextBox
- MediaPlayer
- MenuUpdated
- MultiColumnComboBox
- MultiSelect
- MultiViewCalendar
- Notification
- NumericTextBox
- OrgChart
- OTP Input
- PagerUpdated
- PanelBar
- PDF Export
- PdfProcessing
- PDFViewerUpdated
- Pie Charts
- PivotGrid
- PivotGridV2
- Polar Charts
- Popover
- ProgressBar
- PropertyGridUpdated
- Pyramid Charts
- QRCode
- Radar Charts
- Radial Gauge
- RadioButton
- RadioGroup
- Range Area Charts
- Range Bar Charts
- Rating
- Responsive Panel
- Ripple Container
- Sankey Diagram
- Scatter Charts
- Scheduler
- Overview
- Basic Usage
- Adaptive Rendering
- TagHelper
- Functionality
- Adaptive Slot Height
- Auto Event Height
- Year View
- Timeline View
- Timeline Overnight View
- Custom Toolbar
- Event Selection
- Import and Export to iCal
- PDF Export
- Search Events
- Resources
- Horizontal Grouping
- Vertical Grouping
- Virtual Vertical Grouping
- Hierarchical Grouping
- Date Grouping
- Templates
- Restrictions
- Moving and Resizing
- Changing Work Days
- Highlight Ongoing Events
- Data Binding
- API
- Accessibility and Internationalization
- ScrollView
- Signature
- Skeleton Container
- Slider
- Sortable
- Sparklines
- SplitButton
- Splitter
- SpreadProcessing
- Spreadsheet
- SpreadStreamProcessing
- StackLayout
- Stepper
- Stock Charts
- Switch
- TabStrip
- TaskBoardUpdated
- Template
- TextArea
- TextBox
- TileLayout
- TimeDurationPicker
- Timeline
- TimePicker
- ToggleButton
- ToolBar
- Tooltip
- TreeList
- Basic Usage
- TagHelper
- Remote Data Binding
- OData-v4 Binding
- Checkbox Selection
- Drag and Drop
- Editing
- Filter Row
- InCell Editing
- Popup Editing
- Search Panel
- Column Resizing
- Column Reordering
- Column Menu
- Multi-Column Headers
- Frozen Columns
- Aggregates
- State Persistence
- Excel Export
- PDF Export
- Events
- API
- Row Template
- Toolbar Template
- Keyboard Navigation
- Client-Side Paging
- TreeMap
- TreeView
- UploadUpdated
- Validator
- Waterfall Charts
- Window
- Wizard
- WordsProcessing
- Zip Library
New to Telerik UI for ASP.NET Core? Download free 30-day trial
ASP.NET Core AutoComplete Prefix and Suffix
- EXAMPLE
- VIEW SOURCE
- Edit in Telerik REPL
- Change ThemedefaultDefault Theme
- Main
- Main Dark
- Nordic
- Ocean Blue
- Ocean Blue A11Y
- Purple
- Turquoise
Bootstrap Theme- Main
- Bootstrap 3
- Bootstrap 3 Dark
- Main Dark
- Nordic
- Turquoise
- Turquoise Dark
- Urban
- Vintage
Material Theme- Main
- Arctic
- Lime Dark
- Main Dark
- Material 2
- Material 2 Dark
- Nova
Classic Theme- Main
- Green
- Green Dark
- Lavender
- Lavender Dark
- Main Dark
- Metro
- Metro Dark
- Moonlight
- Opal
- Opal Dark
- Silver
- Silver Dark
- Uniform
Fluent Theme- Main
Also available for:
CLIENT-SIDE API HTML HELPER API TAG HELPER APIDescription
TheTelerik UI for ASP.NET Core AutoComplete introduces the Prefix and Suffix features that allow you to add custom content like icons, HTML elements, images, and more, before or after the input field.
Theprefix input adornment is an element placed before the user input field, and it is commonly used to clarify the expected data in the input, such as currency symbols or unit indicators. The Prefix functionality is set up through thePrefixOptions()
configuration, and it supports the following options:
Icon()
—Inserts an icon before the AutoComplete element. Accepts the name for an existing icon in the Kendo UI theme or SVG content.Template()
—Adds custom content before the AutoComplete element. You can use a variety of templating options likeTemplateId()
,TemplateHandler()
, and more.- Separator(false)—Removes the separator of the prefix adornment. By default, the separator is visible.
Thesuffix input adornment is an element positioned after the user input field. Usually, it provides direct functionality for the entered data, like password visibility toggles, formatting, or clearing the input. The Suffix functionality is set up through theSuffixOptions()
configuration, and it supports the same options as the Prefix feature:
Icon()
—Inserts an icon after the AutoComplete element.Template()
—Adds custom content for the suffix adornment of the AutoComplete.- Separator(false)—Removes the separator of the suffix adornment. By default, the separator is visible.
This demo shows how to add aSearch icon before the AutoComplete and append aButton component after the AutoComplete element.