Questions tagged [action-button]

The action bar allows you to add buttons for the most important action items relating to the app's current context.

Buttons that appear directly in the action bar with an icon and/or text are known as Action Buttons. Actions that can't fit in the action bar or aren't important enough are hidden in the action overflow.

163 questions
0
votes
2 answers

R Shiny: Check condition based on reactive expressions in observeEvent

I would like to build a Shiny App with two tabs: In one tab, some values are entered as input. In the next tab, the user can find an output that is based on the values entered in the first tab. However, before proceeding to the output I want to…
Nerd
  • 61
  • 5
0
votes
0 answers

tel:{phone_number} link [Action.OpenUrl] not working on web in adaptive card microsoft teams from Chat

We have added a button of type Action.OpenUrl in adaptive card and its url as a tel link as given below. "actions":[ { "type":"Action.OpenUrl", "title":"Call Mobile", "url":"tel:+919090909095" } ] It was apparently working fine…
0
votes
0 answers

ActionButton automatically triggered twice

I am building a shiny application with multiple actionButtons. Out of many actionButtons, two of them behave weirdly and get triggered twice everytime user clicks on it. This is only observed on 2 actionbuttons, whereas the rest function well. My…
0
votes
1 answer

Observers in Rshiny - Save Button Dependent on Value from SelectizeInput

In my app there are multiple data frames, each corresponding to only one value in a selectizeinput. When the selectizeinput value matches the table's name, the correct data frame is linked to an rhandsontable. There is only one rhandsontable, which…
0
votes
2 answers

How to show hidden tabs after clicking an actionButton?

I am trying to find the way to have some hidden tabs and show them after clicking an actionButton. I found this post but the proposed solution uses navbarPage. I tried to change the example using sidebarPanel: library(shiny) library(shinyjs) ui <-…
emr2
  • 1,436
  • 7
  • 23
0
votes
0 answers

One action button for multiple outputs shiny

I have shiny app which will give me 6 plot and if i want download the plot or data used to plot on csv. I wanted to a run button which will start the process of all six plots. Is it possible to do that? I checked about multiple outputs with a single…
0
votes
0 answers

RShiny Client Input Data with Action Button - Error Message/Issues

I am fairly new to R and would love some assistance and some advice with a Shiny dashboard that allows clients to input attendance data. I have recently began an RShiny dashboard that is meant to create a Client Inputted Attendance Tracking App. …
zmcclean
  • 15
  • 5
0
votes
1 answer

Create a csv based on actionButton labels in shiny app

I have the shiny app below in which initially lands the user to Bet1 tabPanel. Then the user chooses one of the three actionbuttons below and I want the answer (label of the actionButton) to be recorded in a csv file created inside the working…
firmo23
  • 7,490
  • 2
  • 38
  • 114
0
votes
1 answer

Disable action button in R facing problem for multiple inputs

Hi i am building an R code as follow to have an shiny app ui = fluidPage( shinyjs::useShinyjs(), shinyjs::inlineCSS(appCSS), shinyFeedback::useShinyFeedback(), titlePanel("Predicting concrete strength",""), numericInput("CEM","Cement…
0
votes
1 answer

How to pass a googleMapController to custom widget? (Flutter)

On my flutter googleMap i have quickDialButton, which has multiple buttons. One of them is supposed to center the camera of the parent mapWidget which happens via the googleMapControllet that i am passing as a parameter. return Scaffold( body:…
Josif Hamed
  • 65
  • 1
  • 6
0
votes
1 answer

I cannot introduce new NumericInputs after clicking a "Reset" Button in Shiny

I have written an app in Shiny where you can see a histogram if you click "See the plot". On the other hand, you have 2 NumericInputs where you can change the min and max values of the x-axis. In fact, if you change those values and click again…
emr2
  • 1,436
  • 7
  • 23
0
votes
1 answer

Update radio button after action button input shiny

I'm creating a shiny app, and I want one of my tabs to be a 13 question quiz/game. However, I don't want all 13 questions displayed at once. I want to include an action button that when the user presses, the next question is displayed. Currently,…
0
votes
0 answers

Embed a hyperlink with multiple parameters in an actionButton shiny R

I am using a hyper link that I would like to pass into a shiny action button. I would like to use the "onclick" feature in the action button however, I have multiple parameters that are in my hyperlink which i am unsure how to pass into the action…
Jordan Wrong
  • 1,205
  • 1
  • 12
  • 32
0
votes
1 answer

Using validation in an action button

I am a little confused about the difference between req and validate in R shiny. The only real difference I can see is that validate gives a message to the user. I am building an interface and was using a bunch of hidden messages and conditional…
mauraeh
  • 13
  • 2
0
votes
1 answer

Display table or chart in the same box upon clicking different buttons in R shiny

I am trying to create an app with 2 buttons to show either chart or table (not both) in the same box content. For example, if user click on chart button, chart appears. similarly clicking on table button, table appear in the same place and chart…
Narendra Sahu
  • 136
  • 2
  • 14