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
1
vote
0 answers

Shiny's ActionButton not responding

I can't seem to manage to get the action button in shiny working. Nothing happens when i press "click me" and there is no error message. Does anyone have a clue what might be wrong? library(shiny) ui <- fluidPage( tags$head(tags$script(src =…
chilifan
  • 157
  • 1
  • 12
1
vote
3 answers

Take action when any of the button is clicked Shiny R

How to observe when any of the multiple buttons is clicked? For example, we have three buttons, I would like to show the notification when any of the buttons is clicked. Here is an example code library(shiny) ui <- fluidPage( …
Tan
  • 157
  • 5
1
vote
0 answers

r shiny: updating rhandsontable default input from search in data base

I'm trying to create a shinny app with a default rhandsontable table, then the user has two options to update it: completing directly by hand on the rhandsontable table or searching the data from a database using a number input and an…
1
vote
1 answer

Trigger phone call (tel or sip) using Action.OpenUrl in Adaptive Card in Microsoft Teams

I am working on an adaptive card that is posted to users in Teams using Power Automate. The final thing I would like to add to the adaptive card, is a action button, that the user can click to call a person. I have tried using both tel and sip in…
Nielf
  • 35
  • 1
  • 1
  • 4
1
vote
1 answer

Using actionButton with marker-click and button-click on observeEvent returning no features

thanks in advance for reading my post. Firstly, let me say that I am sure the solution is probably simple, and don't let my wall of text dissuade you. I am new to shiny. The context: I'm using the latest version of R (4.0.3). I have a shiny leaflet…
Paulina
  • 35
  • 1
  • 8
1
vote
1 answer

How to listen for more than one actionbutton within a Shiny observeEvent to reload shiny

Here is the question, I have two dynamically rendered action buttons that are designed to reload the session, but I have trouble listening to them, it is like an OR action, each of them is clicked and then the session reloads. Here is the code: ui…
Ron Lee
  • 33
  • 5
1
vote
2 answers

React Native Action Button - Unable to Add buttons Dynamically

Unable to Add ActionButton Items dynamically. I have the following setup -- I want to add dynamic buttons to this list.…
1
vote
1 answer

How to reactively plot using radioButton and actionButton values in Shiny R

Here is a pseudo code to generate a plot based on the choice made with radioButton and actionButton. ui <- fluidPage( mainPanel( tabsetPanel( tabPanel("Plots", fluidRow(column(4,wellPanel( …
chas
  • 1,565
  • 5
  • 26
  • 54
1
vote
3 answers

How to display default plot in www/ before actionButton is clicked R shiny

Here is a sample code to generate a plot upon clicking the actionButton. shinyApp( shinyUI(fluidPage( inputPanel( numericInput("n", "n", 10), actionButton("update", "Update") ), …
chas
  • 1,565
  • 5
  • 26
  • 54
1
vote
2 answers

How to automatically trigger an action button in R Shiny

I'd like to run the action button automatically when users open/land on 'tab1'. Therefore, instead of clicking the Refresh button to view the date, I'd like to have the date printed automatically. Is there a way to do this? My real code is more…
Ketty
  • 811
  • 10
  • 21
1
vote
1 answer

Shiny: Open new dashboard with actionButton

I would like to open a second dashboard by pressing the action button on the first dashboard. I was able to do that using the code below but the dashboards are connected to each other. E.g. if I close the sidebar on the second dashboard, the sidebar…
MaMo
  • 569
  • 1
  • 10
  • 27
1
vote
0 answers

R shiny update filter ONLY when action button is pressed

I'm trying to create an action button that updates SelectInput and PickerInput ONLY when the button is clicked. library(shiny) shinyUI(basicPage( v1 <- c("a","b","c") v2 <- 1:3 data <- data.frame(v1,v2) pickerInput("v1",label =…
khanch94
  • 11
  • 1
1
vote
1 answer

How to change text from unlink button in odoo?

I am working on odoo 11, In the tree view from res.user I need to change the action button text from "Delete" to "Active/Inactive", just the text.
David Rios
  • 377
  • 4
  • 9
1
vote
2 answers

Is it possible 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
1
vote
0 answers

How to remove "More" button from liferay portlet toolbar

How to remove "More" button from liferay portlet toolbar. I found an option to remove it from "portlet.vm" file but that will apply to all portlets (since its a template) Looking for any other option.