forked from 0x2620/pandora
config: autocompleteSortKey -> autocompleteSort
This commit is contained in:
parent
f20b48d50a
commit
b488e20be3
4 changed files with 8 additions and 8 deletions
|
@ -118,7 +118,7 @@
|
||||||
type: text, string, float, integer, or array of any of these
|
type: text, string, float, integer, or array of any of these
|
||||||
and can have any of the following properties:
|
and can have any of the following properties:
|
||||||
autocomplete: If true, find element will autocomplete
|
autocomplete: If true, find element will autocomplete
|
||||||
autocompleteSortKey: The key that suggestions will be sorted by
|
autocompleteSort: Sort order of autocomplete suggestions
|
||||||
capability: A capability required to see this key
|
capability: A capability required to see this key
|
||||||
columnRequired: If true, the column can't be removed
|
columnRequired: If true, the column can't be removed
|
||||||
columnWidth: Default column width in px
|
columnWidth: Default column width in px
|
||||||
|
@ -147,7 +147,7 @@
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"additionalSort": [{"key": "year", "operator": "-"}, {"key": "director", "operator": "+"}],
|
"additionalSort": [{"key": "year", "operator": "-"}, {"key": "director", "operator": "+"}],
|
||||||
"autocomplete": true,
|
"autocomplete": true,
|
||||||
"autocompleteSortKey": "votes",
|
"autocompleteSort": [{"key": "likes", "operator": "-"}],
|
||||||
"columnRequired": true,
|
"columnRequired": true,
|
||||||
"columnWidth": 180,
|
"columnWidth": 180,
|
||||||
"find": true,
|
"find": true,
|
||||||
|
|
|
@ -122,7 +122,7 @@
|
||||||
type: text, string, float, integer, or array of any of these
|
type: text, string, float, integer, or array of any of these
|
||||||
and can have any of the following properties:
|
and can have any of the following properties:
|
||||||
autocomplete: If true, find element will autocomplete
|
autocomplete: If true, find element will autocomplete
|
||||||
autocompleteSortKey: The key that suggestions will be sorted by
|
autocompleteSort: Sort order of autocomplete suggestions
|
||||||
capability: A capability required to see this key
|
capability: A capability required to see this key
|
||||||
columnRequired: If true, the column can't be removed
|
columnRequired: If true, the column can't be removed
|
||||||
columnWidth: Default column width in px
|
columnWidth: Default column width in px
|
||||||
|
@ -151,7 +151,7 @@
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"additionalSort": [{"key": "year", "operator": "+"}, {"key": "director", "operator": "+"}],
|
"additionalSort": [{"key": "year", "operator": "+"}, {"key": "director", "operator": "+"}],
|
||||||
"autocomplete": true,
|
"autocomplete": true,
|
||||||
"autocompleteSortKey": "year",
|
"autocompleteSort": [{"key": "year", "operator": "+"}],
|
||||||
"columnRequired": true,
|
"columnRequired": true,
|
||||||
"columnWidth": 180,
|
"columnWidth": 180,
|
||||||
"find": true,
|
"find": true,
|
||||||
|
|
|
@ -111,7 +111,7 @@
|
||||||
type: text, string, float, integer, or array of any of these
|
type: text, string, float, integer, or array of any of these
|
||||||
and can have any of the following properties:
|
and can have any of the following properties:
|
||||||
autocomplete: If true, find element will autocomplete
|
autocomplete: If true, find element will autocomplete
|
||||||
autocompleteSortKey: The key that suggestions will be sorted by
|
autocompleteSort: Sort order of autocomplete suggestions
|
||||||
capability: A capability required to see this key
|
capability: A capability required to see this key
|
||||||
columnRequired: If true, the column can't be removed
|
columnRequired: If true, the column can't be removed
|
||||||
columnWidth: Default column width in px
|
columnWidth: Default column width in px
|
||||||
|
@ -139,7 +139,7 @@
|
||||||
"title": "Title",
|
"title": "Title",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"autocomplete": true,
|
"autocomplete": true,
|
||||||
"autocompleteSortKey": "timesaccessed",
|
"autocompleteSort": [{"key": "timesaccessed", "operator": "-"}],
|
||||||
"columnRequired": true,
|
"columnRequired": true,
|
||||||
"columnWidth": 180,
|
"columnWidth": 180,
|
||||||
"find": true,
|
"find": true,
|
||||||
|
|
|
@ -108,7 +108,7 @@
|
||||||
type: text, string, float, integer, or array of any of these
|
type: text, string, float, integer, or array of any of these
|
||||||
and can have any of the following properties:
|
and can have any of the following properties:
|
||||||
autocomplete: If true, find element will autocomplete
|
autocomplete: If true, find element will autocomplete
|
||||||
autocompleteSortKey: The key that suggestions will be sorted by
|
autocompleteSort: Sort order of autocomplete suggestions
|
||||||
capability: A capability required to see this key
|
capability: A capability required to see this key
|
||||||
columnRequired: If true, the column can't be removed
|
columnRequired: If true, the column can't be removed
|
||||||
columnWidth: Default column width in px
|
columnWidth: Default column width in px
|
||||||
|
@ -136,7 +136,7 @@
|
||||||
"title": "Title",
|
"title": "Title",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"autocomplete": true,
|
"autocomplete": true,
|
||||||
"autocompleteSortKey": "timesaccessed",
|
"autocompleteSort": [{"key": "timesaccessed", "operator": "-"}],
|
||||||
"columnRequired": true,
|
"columnRequired": true,
|
||||||
"columnWidth": 180,
|
"columnWidth": 180,
|
||||||
"find": true,
|
"find": true,
|
||||||
|
|
Loading…
Reference in a new issue