File size: 1,770 Bytes
bd8cdd3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
ShowtestModaldialog = function(data,input,col){
showModal(modalDialog(
h2("Appearance setting"),
div( class = "dynamicSI",
lapply(1:length(names(col)), function(i){
column(3,
colorPickr(paste0(names(col)[i],"_selectcolor"),theme = "monolith",label = paste0(names(col)[i],""), selected = col[i],interaction = list(
clear = T,
save = T,
RGBA = TRUE,
input=TRUE,
hex =TRUE
))
)})),
br(),
br(),
br(),
br(),
br(),
easyClose = TRUE,
footer = NULL
))
}
ShowtestModaldialog2 = function(data,input,col){
showModal(modalDialog(
title = "Plot in Dialog",
plotOutput("mappingraph"),
actionButton("actionplottest","pathway mapping",onclick = "$(tab).removeClass('disabled')"),
easyClose = TRUE,
footer = NULL
))
}
ShowtestModaldialog4 = function(data,input,col){
showModal(modalDialog(
h2("Appearance setting"),
div( class = "dynamicSI",
lapply(1:length(names(col)), function(i){
column(3,
colorPickr(paste0(names(col)[i],"_selectcolor"),theme = "monolith",label = paste0(names(col)[i],""), selected = col[i],interaction = list(
clear = T,
save = T,
RGBA = TRUE,
input=TRUE,
hex =TRUE
))
)})),
br(),
br(),
br(),
br(),
br(),
easyClose = TRUE,
footer = NULL
))
} |