Class ListViewFieldSettings
Inheritance
Namespace: Syncfusion.EJ2.Lists
Assembly: Syncfusion.EJ2.dll
Syntax
public class ListViewFieldSettings : EJTagHelper
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 | The default value is null |
ContentTemplate
To get or set value for ContentTemplate.
Declaration
public MvcTemplate<object> ContentTemplate { get; set; }
Property Value
Type |
---|
Syncfusion.EJ2.MvcTemplate<System.Object> |
Enabled
Specifies the enabled state of the ListView component. And, we 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 | The default value is null |
GroupBy
The groupBy
property is used to wraps the ListView elements into a group.
Declaration
public string GroupBy { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
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 | The default value is null |
IconCss
The iconCss
is used to customize the icon to the list items dynamically.
We can add a specific image to the icons using iconCss
property.
Declaration
public string IconCss { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
Id
Specifies the id field mapped in dataSource.
Declaration
public override string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
Overrides
IsChecked
The isChecked
property is used to check whether the list items are in checked state or not.
Declaration
public string IsChecked { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
IsVisible
The isVisible
property is used to check whether the list items are in visible state or not.
Declaration
public string IsVisible { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
SortBy
The sortBy
property used to enable the sorting of list items to be ascending or descending order.
Declaration
public string SortBy { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
TableName
Specifies the tableName
used to fetch data from a specific table in the server.
Declaration
public string TableName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
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 | The default value is null |
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 | The default value is null |