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

Count previous and current number of actioButton click

Help please! I need to get the value of actionButton current and the one before it was clicked. Please see the code below. At the start both numbers ("click_new" and "click_old") are at 0 but after first click on actionButton I want the current…
AussieAndy
  • 101
  • 2
  • 11
0
votes
0 answers

disable/enable actionButton doesn't work in R Shiny Modules

I'm having trouble disabling and enabling actionButton in Shiny Modules. I created a simple app to visualize my problem. The application contains 3 actionButtons. the first button does nothing, it's just a button that we'll want to toggle…
tomsu
  • 371
  • 2
  • 16
0
votes
1 answer

Toggling a conditionalPanel within rintrojs

I would like an introduction using rintrojs that highlights a button that toggles between showing and not showing a conditionalpanel. If the conditional panel is not showing, when the intro gets to that step I would like it to be selected so that it…
0
votes
0 answers

Qliksense how to search for a string across multiple text columns Logical OR

I have seen the answer to this attempted across multiple sources, but many of the solutions seem outdated or to simply not work or are Qlikview instead of qliksense such as:…
CJJ
  • 75
  • 9
0
votes
1 answer

How to reset verbatimTextOutput repeatedly by clicking the reset action button? (on using uiOutput & renderUI we can't generate verbatimTextOutput)

ui <- fluidPage( sidebarPanel( checkboxGroupInput("predictors_1", "Select Predictor variables for Model 1", names(df[,3:8])), # some data frame actionButton("generate_1", "Generate", class = "btn-success"), …
r kd
  • 3
  • 1
0
votes
1 answer

create buttons dynamically using Shiny and/or flexdashboard

The task is to generate an app layout based on the folder structure on my server. There are folders and in each of them there are several RMarkdown files. I want a Shiny/Flexdash board app that will automatically take the folder structure with all…
0
votes
0 answers

How can i set the action of a button in a PowerPoint slide through VSTO PowerPoint AddIn?

I am working on a PowerPoint add-in using VSTO. I want to insert a button into the current slide of a PowerPoint, that when clicked calls a function in my code behind. Something like the following: ` PowerPoint.Slide Sld =…
0
votes
0 answers

Objective-C: local notification not showing action buttons

Here is what I added in my iOS app: - (void) schedule:(CDVInvokedUrlCommand*)command { NSArray* notifications = command.arguments; [self.commandDelegate runInBackground:^{ for (NSDictionary* options in notifications) { …
Terry Windwalker
  • 1,343
  • 2
  • 16
  • 36
0
votes
1 answer

Change date range input with action button

I´m using a date range input for setting the time limits of my data tables. Nevertheless, I want to have buttons (I thought on action buttons) to quickly set up a time range (e.g, 1 month). Hence, not having to select manually in the date range…
0
votes
0 answers

Post request - communicate between r shiny UI and python flask app

library(shiny) library(shiny.router) library(shinydashboard) library(shinyWidgets) library(png) library(flexdashboard) library(jsonlite) library(reticulate) library(httr) Location <-…
0
votes
1 answer

Toggle actionButton color (between Orange & Green) on click within Shiny DT and create new data frame from selected rows

I am developing a Shiny App, where the user can upload data, do some manipulations & create new df from selected rows. I have got till where I can add actionButtons per row in DT but cant make selections work. Selections work as expected if…
0
votes
0 answers

change state of action buttons on the toolbar in KivyMD

I'm trying to write an program for the phone in python using kivy md. The program dynamically adds modules to a page to be counted. I've already got that part sorted in simple kivy. I'm now trying to replicate it in KivyMD because I can use a…
stelicus
  • 3
  • 2
0
votes
1 answer

How to clear the mainPanel if a selectInput choice has changed?

I am trying to create an app that will show you results depending on a selectInput and the changes are controlled by actionButtons. When you launch the app, you have to select a choice: Data 1 or Data 2. Once you have selected your choice (e.g. Data…
emr2
  • 1,436
  • 7
  • 23
0
votes
1 answer

Shiny data frame subset based on character input converted to numerical vector

I'm trying to subset data frame in Shiny app based on character input, but only after action button has been pushed. Here how this looks like in UI: textInput("cases", "Select cases", value = ""), actionButton("submit", "Submit", icon =…
0
votes
2 answers

How to add text below an IconButton in Flutter

I have a Button Icon in the appbar of my app, in which I need to put a text below the "send" icon. How should I do it? actions: [ IconButton( icon: Icon( Icons.send, color: Colors.green, …
365posadas
  • 27
  • 5