Class ComboBoxFieldSettings
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 ComboBoxFieldSettings : SfDataBoundComponent
Constructors
ComboBoxFieldSettings()
Declaration
public ComboBoxFieldSettings()
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 combo-box 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 ComboBox 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 ComboBox 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 ComboBox 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 ComboBox popup
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | The column name to map as the value for each list item. |