This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Update mod.SHARED.colPos_list (#574)
The standard backend layout has only one column since at least 8.7. According to the code in the Core the default value is empty. Update the example removing outdated screenshots and use a backend layout defined via page TSconfig. Releases: main, 13.4, 12.4 Co-authored-by: lina.wolf <[email protected]>
- Loading branch information
1 parent
317c769
commit 1215172
Showing
6 changed files
with
61 additions
and
45 deletions.
There are no files selected for viewing
Binary file removed
BIN
-12.9 KB
Documentation/Images/ManualScreenshots/List/SimpleBackendLayout.png
Binary file not shown.
Binary file removed
BIN
-4.6 KB
Documentation/Images/ManualScreenshots/Page/SimpleBackendLayoutInPageModule.png
Binary file not shown.
Binary file removed
BIN
-4.84 KB
Documentation/Images/ManualScreenshots/Page/SimpleBackendLayoutLeftNotEditable.png
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
Documentation/PageTsconfig/Mod/WebLayout/_BackendLayout.tsconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
mod.web_layout.BackendLayouts { | ||
default { | ||
title = Default | ||
config { | ||
backend_layout { | ||
colCount = 2 | ||
rowCount = 2 | ||
rows { | ||
1 { | ||
columns { | ||
1 { | ||
name = Jumbotron | ||
colPos = 1 | ||
identifier = jumbotron | ||
slideMode = slide | ||
colspan = 2 | ||
} | ||
} | ||
} | ||
|
||
2 { | ||
columns { | ||
1 { | ||
name = Left | ||
colPos = 0 | ||
identifier = left | ||
} | ||
|
||
2 { | ||
name = Right | ||
colPos = 2 | ||
identifier = right | ||
slideMode = collectReverse | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
Documentation/PageTsconfig/Mod/_snippets/_mod.SHARED.colPos_list.tsconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mod.SHARED.colPos_list = 0,2 |