Class ListViewFieldSettings<TValue>
Configure handlers to handle the field settings with the ListView component.
Inheritance
Namespace: Syncfusion.Blazor.Lists
Assembly: Syncfusion.Blazor.dll
Syntax
public class ListViewFieldSettings<TValue> : OwningComponentBase
Type Parameters
Name | Description |
---|---|
TValue | The generic type parameter. |
Constructors
ListViewFieldSettings()
Declaration
public ListViewFieldSettings()
Properties
Child
The Child
property is used for nested navigation of listed items.
Declaration
public string Child { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Enabled
Specifies the enabled state of the ListView component. You can disable the component using this property by setting its value as false.
Declaration
public string Enabled { get; set; }
Property Value
Type | Description |
---|---|
System.String |
GroupBy
The GroupBy
property is used to wraps the ListView elements into a group based on the field value.
Declaration
public string GroupBy { get; set; }
Property Value
Type | Description |
---|---|
System.String |
HtmlAttributes
The HtmlAttributes
allows additional attributes such as id, class, etc., and
accepts n number of attributes in a key-value pair format.
Declaration
public string HtmlAttributes { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IconCss
The IconCss
is used to customize the icon fo the list items dynamically.
You can add a specific image to the icons using the iconCss
property.
Declaration
public string IconCss { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Id
Specifies the id field mapped in data source.
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsChecked
The IsChecked
property is used to check whether the list items are in a checked state or not.
Declaration
public string IsChecked { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Text
The Text
property is used to map the text value from the data source for each list item.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Tooltip
The Tooltip
is used to display the information about the target element while hovering on list items.
Declaration
public string Tooltip { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Dispose(Boolean)
Declaration
protected override void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing |
OnInitializedAsync()
Method invoked when the component is ready to start.
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | Task. |
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task |