You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 10, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: docs/developers-guide.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,8 +30,8 @@ With the **Doc Type Grid Editor** then, we bridge that gap, allowing you to reus
30
30
31
31
Before you get started, there are a number of things you will need:
32
32
33
-
1. .NET 4.5+
34
-
2. Umbraco 7.6.0+
33
+
1. .NET 4.7.2+
34
+
2. Umbraco 8.0.2+
35
35
3. The **Doc Type Grid Editor** package installed
36
36
37
37
---
@@ -40,6 +40,8 @@ Before you get started, there are a number of things you will need:
40
40
41
41
The **Doc Type Grid Editor** is configured via the grid.editors.config.js config file located in the `~/Config` folder. A default configuration should be installed along with the package, but for details on the configuration options, please see below.
42
42
43
+
You can also add your editors using a package.manifest file in a folder in the `~/App_Plugins` folder.
44
+
43
45
#### Example
44
46
45
47
```javascript
@@ -55,6 +57,7 @@ The **Doc Type Grid Editor** is configured via the grid.editors.config.js config
@@ -84,6 +87,7 @@ The **Doc Type Grid Editor** supports 3 config options, all of which are optiona
84
87
|-----------------|----------|-------------|
85
88
| AllowedDocTypes | String[]| An array of doc type aliases of which should be allowed to be selected in the grid editor. Strings can be REGEX patterns to allow matching groups of doc types in a single entry. e.g. "Widget$" will match all doc types with an alias ending in "Widget". However if a single doc type is matched, (aka **Single Doc Type Mode**), then dropdown selection stage (in the DTGE panel) will be skipped. |
86
89
| EnablePreview | Boolean | Enables rendering a preview of the grid cell in the grid editor. |
90
+
| LargeDialog | Boolean | Makes the editing dialog larger. Especially useful for grid editors with complex property editors. |
87
91
| ViewPath | String | Set's an alternative view path for where the **Doc Type Grid Editor** should look for views when rendering. Defaults to `~/Views/Partials/`|
Copy file name to clipboardExpand all lines: src/Our.Umbraco.DocTypeGridEditor/Web/UI/App_Plugins/DocTypeGridEditor/Js/doctypegrideditor.controllers.js
0 commit comments