Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Romain Courteaud
erp5_rtl_support
Commits
a3540a95
Commit
a3540a95
authored
Jul 27, 2011
by
Vincent Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Honour extra & css_class settings in read-only (Multi)RelationStringFields
parent
57dba435
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
product/ERP5Form/MultiRelationField.py
product/ERP5Form/MultiRelationField.py
+8
-0
No files found.
product/ERP5Form/MultiRelationField.py
View file @
a3540a95
...
...
@@ -350,6 +350,14 @@ class MultiRelationStringFieldWidget(Widget.LinesTextAreaWidget,
relation_html_string
=
self
.
render_relation_link
(
field
,
value
,
REQUEST
)
if
relation_html_string
!=
''
:
html_string
+=
' %s'
%
relation_html_string
extra
=
field
.
get_value
(
'extra'
)
if
extra
not
in
(
None
,
''
):
html_string
=
"<div %s>%s</div>"
%
(
extra
,
html_string
)
css_class
=
field
.
get_value
(
'css_class'
)
if
css_class
not
in
(
''
,
None
):
# All strings should be escaped before rendering in HTML
# except for editor field
html_string
=
"<span class='%s'>%s</span>"
%
(
css_class
,
html_string
)
return
html_string
def
render_wheel
(
self
,
field
,
value
,
REQUEST
,
relation_index
=
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