mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-09-12 01:49:39 +02:00
no type or clase if missing
This commit is contained in:
parent
b945b6af33
commit
2495da555a
2 changed files with 7 additions and 5 deletions
|
@ -1 +1 @@
|
|||
app_version <- function()'250320_1144'
|
||||
app_version <- function()'250320_1310'
|
||||
|
|
|
@ -64,13 +64,16 @@ columnSelectInput <- function(inputId, label, data, selected = "", ...,
|
|||
return '<div style=\"padding: 3px 12px\">' +
|
||||
'<div><strong>' +
|
||||
escape(item.data.name) + ' ' +
|
||||
'</strong>' +
|
||||
(item.data.dataclass != '' ?
|
||||
'<span style=\"opacity: 0.9;\"><code style=\"color: black;\"> ' +
|
||||
item.data.dataclass +
|
||||
'</code></span>' + ' ' +
|
||||
'</code></span>' : '' ) + ' ' +
|
||||
(item.data.datatype != '' ?
|
||||
'<span style=\"opacity: 0.9;\"><code style=\"color: black;\"> ' +
|
||||
item.data.datatype +
|
||||
'</code></span>' +
|
||||
'</strong></div>' +
|
||||
'</code></span>' : '' ) +
|
||||
'</div>' +
|
||||
(item.data.label != '' ? '<div style=\"line-height: 1em;\"><small>' + escape(item.data.label) + '</small></div>' : '') +
|
||||
'</div>';
|
||||
},
|
||||
|
@ -89,7 +92,6 @@ columnSelectInput <- function(inputId, label, data, selected = "", ...,
|
|||
}
|
||||
|
||||
|
||||
|
||||
#' A selectizeInput customized for named vectors
|
||||
#'
|
||||
#' @param inputId passed to \code{\link[shiny]{selectizeInput}}
|
||||
|
|
Loading…
Add table
Reference in a new issue