Class AutoCompleteFieldSettings
Represents the Fields property mapping the columns of the data table and binds the data to the component.
Inherited Members
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class AutoCompleteFieldSettings : SfDataBoundComponent
Constructors
AutoCompleteFieldSettings()
Declaration
public AutoCompleteFieldSettings()
Properties
Disabled
Defines whether the particular field value is disabled or not.
Declaration
public string Disabled { get; set; }
Property Value
Type | Description |
---|---|
System.String |
|
Remarks
This property specifies whether the particular field value in the auto-complete is disabled or not.
If set to true
, the field value will be disabled; otherwise, it will be enabled.
GroupBy
Gets or sets the field's name to group the AutoComplete items.
Declaration
public string GroupBy { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the field to group. |
HtmlAttributes
You can add the additional html attributes such as styles, class, and more to the list element. If you configured both property and equivalent html attributes, then the component considers the property value.
Declaration
public string HtmlAttributes { get; set; }
Property Value
Type |
---|
System.String |
IconCss
Gets or sets the column name used as the CSS class(es) for the icon displayed for each list item in the suggestion popup.
Declaration
public string IconCss { get; set; }
Property Value
Type | Description |
---|---|
System.String | The CSS class(es) name for the icon. |
Text
Gets or sets the column name used as the text displayed for each list item in the suggestion popup.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | The column name used as the text displayed for each list item. |
Value
Gets or sets the column name used as the value for each list item in the suggestion popup.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the column to map as the value for each list item. |