Class FieldSettingsModel
Interface for a class FieldSettings
Inheritance
System.Object
FieldSettingsModel
Implements
System.IEquatable<FieldSettingsModel>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class FieldSettingsModel : Object, IEquatable<FieldSettingsModel>
Constructors
FieldSettingsModel()
Declaration
public FieldSettingsModel()
Properties
GroupBy
Group the list items with it's related items by mapping GroupBy field.
Declaration
public string GroupBy { get; set; }
Property Value
Type | Description |
---|---|
System.String |
HtmlAttributes
You can add the additional input attributes such as disabled, value, and more to the root element.
If you configured both the property and equivalent input attribute, then the component considers the property value.
Declaration
public string HtmlAttributes { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IconCss
Maps the icon class column from data table for each list item.
Declaration
public string IconCss { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Text
Maps the text column from data table for each list item
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Value
Maps the value column from data table for each list item
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(FieldSettingsModel)
Declaration
public bool Equals(FieldSettingsModel fieldSettingsModel)
Parameters
Type | Name | Description |
---|---|---|
FieldSettingsModel | fieldSettingsModel |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>