View Source
Class ListViewConfiguration
Represents the configuration for the listview value editor.
Inheritance
System.Object
Assembly: Umbraco.Web.dll
Syntax
public class ListViewConfiguration
Constructors
View Source
ListViewConfiguration()
Declaration
public ListViewConfiguration()
Properties
View Source
BulkActionPermissions
Declaration
[ConfigurationField("bulkActionPermissions", "Bulk Action Permissions", "views/propertyeditors/listview/bulkactionpermissions.prevalues.html", Description = "The bulk actions that are allowed from the list view")]
public ListViewConfiguration.BulkActionPermissionSettings BulkActionPermissions { get; set; }
Property Value
View Source
Icon
Declaration
[ConfigurationField("icon", "Content app icon", "views/propertyeditors/listview/icon.prevalues.html", Description = "The icon of the listview content app")]
public string Icon { get; set; }
Property Value
Type |
Description |
System.String |
|
View Source
IncludeProperties
Declaration
[ConfigurationField("includeProperties", "Columns Displayed", "views/propertyeditors/listview/includeproperties.prevalues.html", Description = "The properties that will be displayed for each column")]
public ListViewConfiguration.Property[] IncludeProperties { get; set; }
Property Value
View Source
Layouts
Declaration
[ConfigurationField("layouts", "Layouts", "views/propertyeditors/listview/layouts.prevalues.html")]
public ListViewConfiguration.Layout[] Layouts { get; set; }
Property Value
View Source
OrderBy
Declaration
[ConfigurationField("orderBy", "Order By", "views/propertyeditors/listview/sortby.prevalues.html", Description = "The default sort order for the list")]
public string OrderBy { get; set; }
Property Value
Type |
Description |
System.String |
|
View Source
OrderDirection
Declaration
[ConfigurationField("orderDirection", "Order Direction", "views/propertyeditors/listview/orderdirection.prevalues.html")]
public string OrderDirection { get; set; }
Property Value
Type |
Description |
System.String |
|
View Source
PageSize
Declaration
[ConfigurationField("pageSize", "Page Size", "number", Description = "Number of items per page")]
public int PageSize { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
View Source
ShowContentFirst
Declaration
[ConfigurationField("showContentFirst", "Show Content App First", "boolean", Description = "Enable this to show the content app by default instead of the list view app")]
public bool ShowContentFirst { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
View Source
TabName
Declaration
[ConfigurationField("tabName", "Content app name", "textstring", Description = "The name of the listview content app (default if empty: 'Child Items')")]
public string TabName { get; set; }
Property Value
Type |
Description |
System.String |
|
View Source
UseInfiniteEditor
Declaration
[ConfigurationField("useInfiniteEditor", "Edit in Infinite Editor", "boolean", Description = "Enable this to use infinite editing to edit the content of the list view")]
public bool UseInfiniteEditor { get; set; }
Property Value
Type |
Description |
System.Boolean |
|