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
b2b2d283
Commit
b2b2d283
authored
May 15, 2018
by
Boris Kocherov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hide button by style attribute
parent
b4b9eb50
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
3 deletions
+14
-3
gadget_json_generated_form_child.js
gadget_json_generated_form_child.js
+14
-3
No files found.
gadget_json_generated_form_child.js
View file @
b2b2d283
...
...
@@ -420,7 +420,10 @@
"
ui-shadow-inset ui-btn ui-btn-inline ui-corner-all
"
+
"
ui-btn-icon-notext ui-icon-btn ui-icon-plus ui-input-btn
"
);
input
.
type
=
"
button
"
;
input
.
hidden
=
!
ret
;
input
.
title
=
title
;
if
(
!
ret
)
{
input
.
setAttribute
(
"
style
"
,
"
display: none;
"
);
}
gadget
.
props
.
add_buttons
.
push
({
element
:
input
,
event
:
function
()
{
...
...
@@ -432,7 +435,11 @@
return
true
;
})
.
push
(
function
(
r
)
{
input
.
hidden
=
!
r
;
if
(
!
r
)
{
input
.
setAttribute
(
"
style
"
,
"
display: none;
"
);
}
else
{
input
.
removeAttribute
(
"
style
"
);
}
return
checkValidityAndNotifyChange
(
gadget
);
});
},
...
...
@@ -445,7 +452,11 @@
return
true
;
})
.
push
(
function
(
r
)
{
input
.
hidden
=
!
r
;
if
(
!
r
)
{
input
.
setAttribute
(
"
style
"
,
"
display: none;
"
);
}
else
{
input
.
removeAttribute
(
"
style
"
);
}
});
}
});
...
...
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