Coder Social home page Coder Social logo

Comments (9)

shrektan avatar shrektan commented on May 19, 2024

I want to add should have way to start box with box collapsed. Is this possible in the current code?

from shinydashboard.

wch avatar wch commented on May 19, 2024

@shrektan See #33.

from shinydashboard.

wch avatar wch commented on May 19, 2024

It looks like this might require replacing the $.AdminLTE.tree function from app.js so that the expanded treeviews don't have the active class, but something else. Also it'll require some CSS to display the treeviews without the active class.

from shinydashboard.

shrektan avatar shrektan commented on May 19, 2024

Good news! Thanks!

from shinydashboard.

pssguy avatar pssguy commented on May 19, 2024

It would also be useful to show and highlight the newly active menuItem or menuSubItem when using
updateTabItems

from shinydashboard.

wch avatar wch commented on May 19, 2024

The menuItem expanded/collapsed state should also be bookmarkable.

from shinydashboard.

bborgesr avatar bborgesr commented on May 19, 2024

@wch I guess this means that we should also allow bookmarking of the expanded/collapsed state of the whole sidebar, right? (this may affect #186)

from shinydashboard.

bborgesr avatar bborgesr commented on May 19, 2024

Note for future stumblers on this issue:

Once #199 is merged, the way to start with a "childfull" menuItem() expanded will to use the startExpanded argument. For example, in the app below, the last menuItem ("Charts") starts expanded and it's first child ("Sub-item 1") starts selected:

shinyApp(
  ui = dashboardPage(
    dashboardHeader(),
    dashboardSidebar(
      sidebarMenu(
        # Setting id makes input$tabs give the tabName of currently-selected tab
        id = "tabs",
        menuItem("Dashboard", tabName = "dashboard", icon = icon("dashboard")),
        menuItem("Widgets", icon = icon("th"), tabName = "widgets", badgeLabel = "new"),
        menuItem("Charts", icon = icon("bar-chart-o"), startExpanded = TRUE,
          menuSubItem("Sub-item 1", tabName = "subitem1", selected = TRUE),
          menuSubItem("Sub-item 2", tabName = "subitem2")
        )
      )
    ),
    dashboardBody(),
    title = "Dashboard example"
  ),
  server = function(input, output) { }
)

from shinydashboard.

bborgesr avatar bborgesr commented on May 19, 2024

Closed in #199

from shinydashboard.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.