Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rjs_json_form
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
Boris Kocherov
rjs_json_form
Commits
473098ac
Commit
473098ac
authored
May 04, 2018
by
Boris Kocherov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UI: do not display label for form. display title instead
parent
5ba4e004
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
9 deletions
+18
-9
gadget_json_generated_form_child.js
gadget_json_generated_form_child.js
+18
-9
No files found.
gadget_json_generated_form_child.js
View file @
473098ac
...
@@ -538,6 +538,7 @@
...
@@ -538,6 +538,7 @@
div
,
div
,
delete_button
,
delete_button
,
label
,
label
,
label_text
,
div_input
,
div_input
,
span_info
,
span_info
,
error_message
,
error_message
,
...
@@ -606,16 +607,24 @@
...
@@ -606,16 +607,24 @@
label
.
value
=
key
;
label
.
value
=
key
;
gadget
.
props
.
property_name_edit
=
label
;
gadget
.
props
.
property_name_edit
=
label
;
}
else
{
}
else
{
label
=
document
.
createElement
(
"
label
"
);
label_text
=
[
key
,
json_field
.
title
]
label
.
textContent
=
[
key
,
json_field
.
title
]
.
filter
(
function
(
v
)
{
return
v
;
})
.
filter
(
function
(
v
)
{
return
v
;
})
.
join
(
"
"
)
.
join
(
"
"
)
// use non-breaking hyphen
// use non-breaking hyphen
.
replace
(
"
-
"
,
"
‑
"
);
.
replace
(
/-/g
,
"
‑
"
);
}
if
(
label_text
)
{
if
(
label
.
textContent
)
{
if
(
options
.
top
)
{
label
=
document
.
createElement
(
"
span
"
);
label
.
textContent
=
label_text
;
root
.
appendChild
(
label
);
}
else
{
label
=
document
.
createElement
(
"
label
"
);
label
.
textContent
=
label_text
;
div
.
appendChild
(
label
);
div
.
appendChild
(
label
);
}
}
}
}
div_input
=
document
.
createElement
(
"
div
"
);
div_input
=
document
.
createElement
(
"
div
"
);
div_input
.
setAttribute
(
"
id
"
,
gadget
.
element
.
getAttribute
(
"
data-gadget-scope
"
)
+
first_path
+
'
/
'
);
div_input
.
setAttribute
(
"
id
"
,
gadget
.
element
.
getAttribute
(
"
data-gadget-scope
"
)
+
first_path
+
'
/
'
);
div_input
.
setAttribute
(
"
class
"
,
"
input
"
);
div_input
.
setAttribute
(
"
class
"
,
"
input
"
);
...
...
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