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
2
votes
1 answer

R Shiny: Click Button Within Datatable to Display Popup Twice in a row

Using RStudio 1.0.136 and R Shiny 0.14.2, I am trying to create a data table that has an action button on each row, and when a button is clicked a popup will appear. My code is currently working, except you cannot click the same button twice in a…
Jamie
  • 110
  • 2
  • 8
2
votes
2 answers

Action Buttons do not cover the entire Toolbar

I have used a Toolbar to display four action buttons. When I inflate the toolbar with menu, the action buttons are displayed towards one side as shown in the picture : How can I make these action buttons cover the entire toolbar? This is the code…
2
votes
1 answer

R Shiny: How to create an "Add Field" Button

In R Shiny is there a way to have a button that says "add field" that, when clicked, will add another text input box? I would want to take this code: shinyUI(fluidPage( titlePanel("Resume Text Analysis"), sidebarLayout(position = "right", …
Lindsey Register
  • 145
  • 1
  • 2
  • 12
1
vote
1 answer

How to navigate between different tabItems in shinydashboard through buttons

I have made a shiny app (in shinydashboard) with many menu and submenu items. Like the following tree structure sidebarMenu( menuItem("Item 1", tabName = "item1", icon = icon("dashboard")), menuItem("Item 2", tabName = "item2",…
AnilGoyal
  • 25,297
  • 4
  • 27
  • 45
1
vote
1 answer

Refreshing randomly selected action buttons in Shiny

So, I'm building an app where my input is randomly selected. It's a set of recommendations, picked at random from a list, each one embedded in an action button that will (eventually) take the user to the related activity page. I've seen plenty of…
Casper
  • 33
  • 3
1
vote
2 answers

How to track the net number of action button clicks in order to correctly label a series of rendered tables with their count?

In running the reduced code posted at the bottom, the user generates a series of rhandsontable tables by clicking the button "Add table" and deletes added tables by clicking on the corresponding "Delete" buttons underneath each table. The base or…
Village.Idyot
  • 1,359
  • 2
  • 8
1
vote
3 answers

How to align to the right an actionButton inside a ConditionalPanel?

I am creating a shiny app where depending on your selectInput, you will see an extra actionButton or not. In order to get that, this extra button has to be inside a conditionalPanel. I want to have both actionButtons aligned, the regular one on the…
emr2
  • 1,436
  • 7
  • 23
1
vote
0 answers

Is there a way to make a specific cell in Shiny datatable editable after clicking an actionbutton on that cell's row?

My this question is based on my previous post, which is this: R shiny app row actionbutton not generating with new row addition so what I am trying to do is if I click on "Reward" on row 2 for Alice, I would be able to change her Motivation Cell…
1
vote
1 answer

R shiny app row actionbutton not generating with new row addition

I am working on this code where I am trying to make a new row and my existing rows has this actionbutton "Reward", after I try to insert a new row the actionbutton does not show up on the new row, is there a way I can add the actionbutton to the new…
1
vote
1 answer

Looking for a more logical way to represent the conditions of a 96 well plate in a shiny app

I have a picture of a 96-well plate from a top view, where the bottom of the plate has been made transparent. What I would like to do eventually is have the cells or columns change color when users of my Shiny app click on a certain button that…
Chris
  • 150
  • 14
1
vote
1 answer

Styling shiny action buttons with variable names created from lapply functions and user input

I have a number input that creates a certain number of text boxes and color selection menus, depending on the number chosen by the user. This also creates a certain number of action buttons. What I want to do is have the buttons be updated based on…
Chris
  • 150
  • 14
1
vote
1 answer

Android Notification button(Action buttons) to pass data when buttons pressed

I want to add an action on a Button of a Notification (yes or no) like when some one clicks on it, it had to be passed states like yes or no to a layout without opening app. below is a sample image : this is my code private void NotifyKool() { …
1
vote
2 answers

How to add elements into a plot and see the update after having clicked the actionButton? [Shiny]

I am trying to create an app where you can create boxplots and add the Kruskal-Wallis p-value if the user chooses it. The app has 3 tabs: Tab 1 > it has a checkboxInput that if you click on it, you will do the log2 transformation. In addition, it…
emr2
  • 1,436
  • 7
  • 23
1
vote
1 answer

How to to update data by clicking actionButton in R in runtime

I want to update output data on update button every time. Here is my code which show the output on update button for the first time I run the code but in runtime if the input is changed, the output is updated automatically. library(shiny) ui <-…
1
vote
1 answer

How to open a menu SubItem with an actionButton

I'm developing my first shiny app and I want to put some buttons on the mainPage that redirect to the menu subItens I've created. I tried to do this using the menu subItens link, but it didn't work. So, I copied the code I used to do the menu…
Isabelly
  • 11
  • 2
1 2
3
10 11