Skip to content

Commit

Permalink
Update st-shiny-fluent-and-rhino.Rmd
Browse files Browse the repository at this point in the history
  • Loading branch information
PawanRamaMali committed Jun 29, 2023
1 parent 185f13f commit 6a64b8d
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions vignettes/st-shiny-fluent-and-rhino.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ editor_options:
### Getting started with our development environment

Let us first install and create our `rhino` project structure.
Note: Ensure Rhino v1.4.0 or later is installed for this tutorial.

To install `rhino`, please run the following in the R console:

Expand Down Expand Up @@ -136,7 +137,6 @@ ui <- function(id) {
server <- function(id) {
moduleServer(id, function(input, output, session) {
output$datatable <- renderUI({
# Note : If you are using `box>=1.1.3`, import datasets directly without using `shiny.fluent::fluentSalesDeals`
DetailsList(items = fluentSalesDeals)
})
})
Expand Down Expand Up @@ -234,7 +234,6 @@ ui <- function(id) {
server <- function(id) {
moduleServer(id, function(input, output, session) {
output$datatable <- renderUI({
# Note : If you are using `box>=1.1.3`, import datasets directly without using `shiny.fluent::fluentSalesDeals`
# This issue should be solved in the next `box` release.
DetailsList(items = fluentSalesDeals, columns = columns)
})
Expand Down Expand Up @@ -292,7 +291,6 @@ ui <- function(id) {
server <- function(id) {
moduleServer(id, function(input, output, session) {
filtered_deals <- reactive({
# Note : If you are using `box>=1.1.3`, import datasets directly without using `shiny.fluent::fluentSalesDeals`
fluentSalesDeals |> filter(
is_closed | input$includeOpen
)
Expand Down Expand Up @@ -378,7 +376,6 @@ ui <- function(id) {
server <- function(id) {
moduleServer(id, function(input, output, session) {
filtered_deals <- reactive({
# Note : If you are using `box>=1.1.3`, import datasets directly without using `shiny.fluent::fluentSalesDeals`
fluentSalesDeals |> filter(
is_closed | input$includeOpen
)
Expand Down Expand Up @@ -459,7 +456,6 @@ ui <- function(id) {
server <- function(id) {
moduleServer(id, function(input, output, session) {
filtered_deals <- reactive({
# Note : If you are using `box>=1.1.3`, import datasets directly without using `shiny.fluent::fluentSalesDeals`
fluentSalesDeals |> filter(
is_closed | input$includeOpen
)
Expand Down

0 comments on commit 6a64b8d

Please sign in to comment.