From ad1378f5bd6397641721990b7cbaa63b4e7b355b Mon Sep 17 00:00:00 2001 From: Schultheis Date: Fri, 20 Apr 2018 13:35:36 +0200 Subject: [PATCH 1/2] featureSelector: added text below buttons for clarity --- R/featureSelector.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/R/featureSelector.R b/R/featureSelector.R index f77bb01..3359661 100644 --- a/R/featureSelector.R +++ b/R/featureSelector.R @@ -27,7 +27,8 @@ featureSelectorUI <- function(id){ shiny::div(id = ns("guide_buttons"), shiny::actionButton(ns("select"), "Select", style = "color: #fff; background-color: #3c8dbc"), shiny::actionButton(ns("reset"), "Reset", style = "color: #fff; background-color: #3c8dbc"), - shiny::actionButton(ns("guide"), "Launch guide", style = "color: #fff; background-color: #3c8dbc", icon = shiny::icon("question-circle")) + shiny::actionButton(ns("guide"), "Launch guide", style = "color: #fff; background-color: #3c8dbc", icon = shiny::icon("question-circle")), + shiny::br("The SELECT button only evaluates the filter below. All selections in the table above will reset!") ) ) From 1914231879831eaccacf4a424a94ff3b1e0c3eb5 Mon Sep 17 00:00:00 2001 From: Schultheis Date: Fri, 20 Apr 2018 14:35:13 +0200 Subject: [PATCH 2/2] featureSelector: changed help text below buttons --- R/featureSelector.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/featureSelector.R b/R/featureSelector.R index 3359661..13fea96 100644 --- a/R/featureSelector.R +++ b/R/featureSelector.R @@ -28,7 +28,7 @@ featureSelectorUI <- function(id){ shiny::actionButton(ns("select"), "Select", style = "color: #fff; background-color: #3c8dbc"), shiny::actionButton(ns("reset"), "Reset", style = "color: #fff; background-color: #3c8dbc"), shiny::actionButton(ns("guide"), "Launch guide", style = "color: #fff; background-color: #3c8dbc", icon = shiny::icon("question-circle")), - shiny::br("The SELECT button only evaluates the filter below. All selections in the table above will reset!") + shiny::br("The SELECT button only evaluates the filter(s) below. Sorting or sub-selections based on the table above will reset!") ) )