Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xavier Thompson
erp5
Commits
1c7f511a
Commit
1c7f511a
authored
Mar 16, 2023
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERP5Form: improve ZMI view of more forms
parent
8a5418d9
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
2 deletions
+24
-2
product/ERP5Form/GadgetField.py
product/ERP5Form/GadgetField.py
+6
-0
product/ERP5Form/ImageField.py
product/ERP5Form/ImageField.py
+3
-0
product/ERP5Form/MatrixBox.py
product/ERP5Form/MatrixBox.py
+15
-2
No files found.
product/ERP5Form/GadgetField.py
View file @
1c7f511a
...
...
@@ -21,6 +21,7 @@ class GadgetWidget(Widget.Widget):
title
=
"RenderJS extra"
,
description
=
(
"More parameters passed to the renderJS's render method."
),
css_class
=
"form-control"
,
default
=
[],
required
=
0
)
...
...
@@ -28,12 +29,14 @@ class GadgetWidget(Widget.Widget):
title
=
'Gadget Url'
,
description
=
(
"The url of the html page containing the
\
gadget"
),
css_class
=
"form-control"
,
default
=
''
,
required
=
0
)
js_sandbox
=
fields
.
StringField
(
'js_sandbox'
,
title
=
'Gadget Sandbox'
,
description
=
(
"Gadget sandbox"
),
css_class
=
"form-control"
,
default
=
''
,
required
=
0
)
...
...
@@ -83,12 +86,14 @@ class GadgetFieldValidator(Validator.Validator):
title
=
'Data Url'
,
description
=
(
"Checked if gadget return data url."
),
css_class
=
"form-check-input"
,
default
=
0
)
validator_form_id
=
fields
.
StringField
(
'validator_form_id'
,
title
=
'Validator Form ID'
,
description
=
"ID of the validator field's form. Default is the current form"
,
css_class
=
"form-control"
,
default
=
""
,
display_width
=
40
,
required
=
0
...
...
@@ -98,6 +103,7 @@ class GadgetFieldValidator(Validator.Validator):
'validator_field_id'
,
title
=
'Validator Field ID'
,
description
=
"ID of the validator field."
,
css_class
=
"form-control"
,
default
=
""
,
display_width
=
40
,
required
=
0
...
...
product/ERP5Form/ImageField.py
View file @
1c7f511a
...
...
@@ -71,6 +71,7 @@ class ImageFieldWidget(Widget.TextWidget):
description
=
(
"The format in which the image should be converted to. "
"This is only used with ERP5 Images."
),
css_class
=
"form-control"
,
default
=
''
,
required
=
0
)
...
...
@@ -79,6 +80,7 @@ class ImageFieldWidget(Widget.TextWidget):
description
=
(
"The quality used when converting the image. "
"This is only used with ERP5 Images."
),
css_class
=
"form-control"
,
default
=
75
,
required
=
0
)
...
...
@@ -87,6 +89,7 @@ class ImageFieldWidget(Widget.TextWidget):
description
=
(
"Return image only if it is already pre converted in cache. "
"This is only used with ERP5 Images."
),
css_class
=
"form-control"
,
default
=
False
,
required
=
0
)
...
...
product/ERP5Form/MatrixBox.py
View file @
1c7f511a
...
...
@@ -63,6 +63,7 @@ class MatrixBoxWidget(Widget.Widget):
title
=
'Default'
,
description
=
(
"Default value of the text in the widget."
),
css_class
=
"form-control"
,
default
=
""
,
width
=
20
,
height
=
3
,
required
=
0
)
...
...
@@ -72,6 +73,7 @@ class MatrixBoxWidget(Widget.Widget):
description
=
(
"Method returning columns, lines and tabs. The method is passed"
" matrixbox=True, base_id=base_id as arguments."
),
css_class
=
"form-control"
,
default
=
''
,
required
=
0
)
columns
=
fields
.
ListTextAreaField
(
'columns'
,
...
...
@@ -83,6 +85,7 @@ class MatrixBoxWidget(Widget.Widget):
"to the user.
\
n
"
"For example (('color/blue', 'Bleu'), ('color/red','Red')).
\
n
"
" Deprecated, use cell range method instead"
),
css_class
=
"form-control"
,
default
=
[],
required
=
0
)
...
...
@@ -94,6 +97,7 @@ class MatrixBoxWidget(Widget.Widget):
"to the user.
\
n
"
"For example (('size/baby/02','baby/02'),('size/baby/03','baby/03')).
\
n
"
"Deprecated, use cell range method instead"
),
css_class
=
"form-control"
,
default
=
[],
required
=
0
)
...
...
@@ -104,6 +108,7 @@ class MatrixBoxWidget(Widget.Widget):
"and Columns.
\
n
"
"This is used only if you have more than 2 kinds of variations.
\
n
"
"Deprecated, use cell range method instead"
),
css_class
=
"form-control"
,
default
=
[],
required
=
0
)
...
...
@@ -112,6 +117,7 @@ class MatrixBoxWidget(Widget.Widget):
title
=
"Cell Range"
,
description
=
(
"This defines the range of the matrix."
),
css_class
=
"form-control"
,
default
=
[],
required
=
0
)
getter_method
=
fields
.
StringField
(
'getter_method'
,
...
...
@@ -120,7 +126,7 @@ class MatrixBoxWidget(Widget.Widget):
"You can specify a specific method in order to retrieve the context. "
"This field can be empty, if so the MatrixBox will use the default "
"context."
),
css_class
=
"form-control"
,
default
=
''
,
required
=
0
)
...
...
@@ -130,6 +136,7 @@ class MatrixBoxWidget(Widget.Widget):
"You can specify a method in order to retrieve cells. This field can "
"be empty, if so the MatrixBox will use the default method : getCell."
),
css_class
=
"form-control"
,
default
=
''
,
required
=
0
)
...
...
@@ -139,7 +146,7 @@ class MatrixBoxWidget(Widget.Widget):
"You can specify a specific method in order to create cells. "
"This field can be empty, if so the MatrixBox will use the default "
"method : newCell."
),
css_class
=
"form-control"
,
default
=
''
,
required
=
0
)
...
...
@@ -149,6 +156,7 @@ class MatrixBoxWidget(Widget.Widget):
"A list of attributes which are set by hidden fields called "
"matrixbox_attribute_name. This is used "
"when we want to specify a computed value for each cell"
),
css_class
=
"form-control"
,
default
=
[],
required
=
0
)
...
...
@@ -158,6 +166,7 @@ class MatrixBoxWidget(Widget.Widget):
"An optional list of globals attributes which are set by hidden "
"fields and which are applied to each cell. "
"This is used if we want to set the same value for every cell"
),
css_class
=
"form-control"
,
default
=
[],
required
=
0
)
...
...
@@ -166,6 +175,7 @@ class MatrixBoxWidget(Widget.Widget):
description
=
(
"The Base id for cells : this is the name used to store cells, "
"we usually use names like : 'movement', 'path', ... "
),
css_class
=
"form-control"
,
default
=
'cell'
,
required
=
0
)
...
...
@@ -174,6 +184,7 @@ class MatrixBoxWidget(Widget.Widget):
description
=
(
"The Portal Type for cells : This is the portal type used to "
"create a new cell."
),
css_class
=
"form-control"
,
default
=
'Mapped Value'
,
required
=
0
)
...
...
@@ -181,6 +192,7 @@ class MatrixBoxWidget(Widget.Widget):
title
=
"Update Cell Range"
,
description
=
(
"The cell range should be updated upon edit."
),
css_class
=
"form-check-input"
,
default
=
0
)
url_cells
=
fields
.
ListTextAreaField
(
'url_cells'
,
...
...
@@ -188,6 +200,7 @@ class MatrixBoxWidget(Widget.Widget):
description
=
(
"An optional list of cells which can provide a custom URL."
"If no url cell is used, then no link is displayed."
),
css_class
=
"form-control"
,
default
=
[],
required
=
0
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment