Questions tagged [reactive]

The reactive tag refers to a variable type and environment used inside Shiny applications based in the R programming language. Reactive elements are dynamic and changing over time usually due to user input to the Shiny application. This tag should be used with questions and errors regarding how to refresh, update, assign, and access user inputs into Shiny. The reactive tag is to be used in conjunction with the r and shiny tag.

2049 questions
0
votes
1 answer

Update multiple related selectizeInput() controlling a reactive dataset filtered through these inputs choices

I have a simple shiny app that loads a dataset when I launch it. The app has different selectizeInput() where the user can choose one or more values of different variables with which he/she can filter the dataset. In the following reproducible…
nd091680
  • 585
  • 4
  • 15
0
votes
1 answer

Vue does not update render on update to props

I'm currently writing a Vue application where I allow the editing of some components by the end user. The rendered structure is currently generated from a tree-like data structure and passed down through component props, and I have written the code…
0
votes
1 answer

how to save basename of ShinyFiles directory input to pass into a function

How can I obtain just the selected directory name from a ShinyFiles directory button? I looked at this post, another SO question, and got it to show the full path in a verbatimTextOutput, but I just want the directory name. I tried printing out to…
Spencer Trinh
  • 743
  • 12
  • 31
0
votes
1 answer

Create reactive data frame dependent on selected tabItem

In my shinyApp i have a Data Frame which i want it to be reactive dependent on the Tab that is selected. I tried the following, but it does not work. Any other ideas? library(shiny) library(shinydashboard) library(tidyverse) data =…
user12967444
0
votes
1 answer

Angular Inside ngFor how to set [disabled] not working with multiple conditions

I have ngFor inside i am trying [disabled] on button base on multiple conditions how can i do any one suggest me please. i don't know how to work [disabled] on inside of ngFor with multiple conditions. i have try both way…
Darshan Malani
  • 478
  • 3
  • 12
0
votes
2 answers

How to I get the value of a Mono property without calling block()?

I use this method to save or update an existing recipe in my DB, the incoming object might not have an id property if the recipe is new. After saving the command to the db I need to redirect the user to the page that displays the recipe, in order to…
0
votes
1 answer

How to change the y in flexdashboard selectInput

I'm trying to make a flexdashboard using IMDb data, that has an interactive jitter plot where you can change the x and y for visualizing hierarchical clustering result. The code that I've already made can change only the x and number of k. I think I…
0
votes
0 answers

My html reactive form does not appear. Please see below my code

After I click on see movie button I want to redirect to login page, but my login page does not appear. Where is the problem ? My movie-list.component.html
Patricia
  • 1
  • 3
0
votes
1 answer

How to pass param through pipes in R?

I'm trying to pass param through pipes and then send the data thru email. My code crash when I click send mail button. I'm not sure how to solve this question as I relatively new in R…
Afiq
  • 17
  • 4
0
votes
1 answer

Update new table with rows appended using actionButton in R Shiny

I have a Forecast table in Aurora, which I am able to read and filter-load using reactive. I am writing new rows to the table using an action button 'write_to_forecast_table', but I am not able to load the newly added row in the main table…
borderline_coder
  • 183
  • 1
  • 13
0
votes
2 answers

Can't set object property as reactive in Vue.js

I have one file vue component with one property 'todo-item' with such structure { id:1, text:'Buy tickets', isDone: false, person:'Boss', location:'Boryspil', childTask:null, }, And I have computed properties: computed:{ …
0
votes
1 answer

How to create a input filter for a angular table?

I am trying to implement a table with a input filter in a Angular 11 project. The table is populated by a SERVICE: export class Service{ url='myUrl'; http; constructor(private http:HttpClient){ this.http=http } loadAll():…
0
votes
2 answers

'Unfold' in Swift's Combine Framework

I'm looking for a method that allows you to react upon the previous output to create a new stream. It would be similar to scan, but rather than returning an output, it would return another publisher that publishes the next result. Here's something…
Ivorius
  • 356
  • 2
  • 4
  • 13
0
votes
1 answer

How to write query from mongoshell in reactive mongo data (java)

I have such a query executable in the mongo shell: db.devices.find({_id: {$gt: ObjectId("5fd931e00000000000000000")}}) And I want to write it down in spring boot reactive mongo data, my attempts looking like this were unsuccessful: …
RideSVEL
  • 1
  • 3
0
votes
1 answer

Return Lambda returned value from Method in Java

public DetailsResponse common(String customerId, String personId) { Capabilities capabilities = new Capabilities(); Details details = new Details(); DetailsResponse detailsResponse = new DetailsResponse(); …
SRP
  • 3
  • 3