Change prevalue order

(cherry picked from commit 8fe699f26b)
This commit is contained in:
BatJan
2022-10-03 22:36:11 +02:00
committed by Sebastiaan Janssen
parent 90fdd8c5a8
commit faa256dd92

View File

@@ -54,9 +54,6 @@ public class ListViewConfiguration
[ConfigurationField("pageSize", "Page Size", "number", Description = "Number of items per page")]
public int PageSize { get; set; }
[ConfigurationField("orderBy", "Order By", "views/propertyeditors/listview/sortby.prevalues.html", Description = "The default sort order for the list")]
public string OrderBy { get; set; }
[ConfigurationField("orderDirection", "Order Direction", "views/propertyeditors/listview/orderDirection.prevalues.html")]
public string OrderDirection { get; set; }
@@ -67,6 +64,9 @@ public class ListViewConfiguration
Description = "The properties that will be displayed for each column")]
public Property[] IncludeProperties { get; set; }
[ConfigurationField("orderBy", "Order By", "views/propertyeditors/listview/sortby.prevalues.html", Description = "The default sort order for the list")]
public string OrderBy { get; set; }
[ConfigurationField("layouts", "Layouts", "views/propertyeditors/listview/layouts.prevalues.html")]
public Layout[] Layouts { get; set; }