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

Kivy: Change the background of ActionButton in ActionOverFlow

I want to change the background of the ActionButtons which are inside the ActionOverflow in an ActionBar, however using the usual approach for Buttons (background_down, background_normal) seems not to work. [ActionButton with black background]…
Thomas Adams
  • 13
  • 1
  • 5
0
votes
1 answer

Navigate through differenet tabsetPanels via actionbuttons in a shiny app

I have a shiny app with 5 actionButton() in the sidebar. I want every time the user press a button the respective tabsetPanel() to be displayed. It is important that the default tabsetPanel() should be the "Home" one. This is why I used…
firmo23
  • 7,490
  • 2
  • 38
  • 114
0
votes
0 answers

How to remove the delay for passing params to a render function when using an action button?

The following code produces a GUI where an user can input files paths. The code pre-processes those file paths and safes the results. The idea is that those inputs are passed to a render function for Rmarkdown and, on the first action button press,…
0
votes
0 answers

How to combine selectInput with actionButton in a shiny app

I am not sure about how to combine in shiny actionInputs with actionButtons. What I want is to select a variable "colour" with an actionInput, select with an actionButton "Player1" or "Player2" and with these, read the data "colour_blue.dat",…
Rai
  • 113
  • 12
0
votes
0 answers

Making of Dashboard

I am trying to put dashboard inside action action button named load scenario.Here dashboard is visible when load scenario button is pressed twice.But i want to show the dashboard page as soon as load scenario button is pressed(not two time).Here is…
0
votes
1 answer

When dashboard is present inside action-button it is showing result when button is pressed twice

In my code when i press load scenario button it is showing the dashboard page when load scenario button is pressed twice.I want my dashboard to appear in a single click.Can anyone help.Here is my code library("shiny") library("shinydashboard") ui…
0
votes
0 answers

Using renderUI function to display dashboard page when an action-button is clicked

In my code when load scenario button is clicked it should display a dashboard.But i am getting error "object of type 'closure' is not subsettable".I know there are lot of questions already asked in stack overflow but i am unable to get any of…
user11034850
  • 35
  • 1
  • 9
0
votes
1 answer

Storing entire code inside the action button

I want to put my whole code inside the action button. As i click the button my whole code dashboard should be visible in my screen(which i am getting right now in my code) But firstly i must be able to see only that button. Here is the sample…
user11034850
  • 35
  • 1
  • 9
0
votes
1 answer

R Shiny Activing an Action Button twice with reactive values

I have the following shiny apps server <- function(input, output, session) { rv <- reactiveValues(i = 0) output$myplot <- renderPlotly({ dt = data.frame(x = 1:10, y = rep(rv$i,10)) plot_ly(dt, x = ~x, y =~y) }) …
K.Hua
  • 769
  • 4
  • 20
0
votes
1 answer

How and where would I combine these two variable in JavaScript?

I have this code I've pieced together linked to an action button in this PDF. It is supposed to verify if all required fields are entered and if so, it will pull the name and employee number from the document and generate an email with the PDF…
0
votes
0 answers

Action Button that Connects to Skype in Shiny App

I have a Shiny app where there is an action button that is suppose to connect to Skype so people can directly chat with me. Below is the code I tried however when the action button is clicked nothing…
MLS
  • 108
  • 14
0
votes
1 answer

Unable to clear the displayed output in ShinyApp using actionButton

I'm building a shinyApp on mtcars data. I got 2 actionButtons (Go & Clear). The Go button is for displaying the output on mainPanel whereas the Clear button is for clearing that output. My Clear button isn't working due to some unforeseen reason.…
Doctor
  • 59
  • 1
  • 11
0
votes
0 answers

Dynamically call function by pressing a button with different input values

I have a main window with a toolbar. I also have a class that handles actions and a class that has all the actions. Here is my code: import sys from PyQt4 import QtGui, QtCore buttonActions = ['actA', 'actB', 'actC'] img =…
ioaniatr
  • 277
  • 4
  • 15
0
votes
1 answer

When plotting a subset of my data with renderPlotly and plot_ly the values of the xAxis are not correct

I have values for different indicators for different countries. A stacked boxplot is supposed to visualize my data. My goal is that the user chooses with selectInput which countries should be plotted. Therefore I am using subset. The bars are only…
Kali
  • 3
  • 1
0
votes
1 answer

eventReactive, source() and plotting on R Shiny

I am having some trouble with creating plots on eventReactive. I have a source code for inside event reactive, and I am trying to make multiple plots. I am a little unsure how to make multiple plots, so I tried to make one into a plot. However, I am…
IKumar
  • 35
  • 2
  • 6