Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
jlopez
sagJL
Commits
ca050946
Commit
ca050946
authored
Oct 17, 2018
by
jlopez
Browse files
fix bugs
parent
4f770561
Changes
3
Hide whitespace changes
Inline
Side-by-side
app/pipeline/pages/pages_def_inputs.R
View file @
ca050946
...
...
@@ -22,6 +22,8 @@ tabinputs = fluidPage(
fileInput
(
"fileInput1"
,
label
=
"Chose file"
,
accept
=
c
(
".csv"
,
".xslx"
),
multiple
=
FALSE
,
width
=
"50%"
),
actionButton
(
"testButton"
,
"Test"
,
class
=
"btn btn-success"
),
actionButton
(
"runP"
,
"Run"
,
icon
(
"save"
),
class
=
"btn btn-primary"
)
)
...
...
app/pipeline/server/opt_inputs.R
View file @
ca050946
#' Event when use testButton button
observeEvent
(
input
$
testButton
,
{
})
#' Event when use runP button
observeEvent
(
input
$
runP
,
{
...
...
app/pipelineR.yml
View file @
ca050946
...
...
@@ -128,6 +128,13 @@ App:
width
:
"
50%"
accept
:
[
"
.csv"
,
"
.xslx"
]
-
class
:
"
btn
btn-success"
icon
:
"
"
id
:
"
testButton"
label
:
"
Test"
type
:
"
actionButton"
-
class
:
"
btn
btn-primary"
icon
:
"
save"
...
...
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