Giter VIP home page Giter VIP logo

Comments (9)

cinkie avatar cinkie commented on May 27, 2024 2

I also ran into the same issue. This bug is still there.

from dt.

yihui avatar yihui commented on May 27, 2024

That is a similar issue as #34. I'm aware of it, but it is quite difficult to fix it, unfortunately. Putting the filters at the bottom alleviates the problem a little bit, but the select menu won't work (sliders seem to work). Sorry.

from dt.

steadyfish avatar steadyfish commented on May 27, 2024

ok. I tried to work around this using FixedHeader extension with overflow-y: scroll.

The filter is being displayed properly, but when scrolling down the rows of the table, the rows are visible at the top.

Screenshot -
(Default)
image

(After Scrolling down)
image

Code -

library(shiny)
library(DT)

my_data = data.frame(a = 1:50, b = rep(letters[1:10]))
my_data_dt = datatable(my_data,
                       extensions = c('TableTools','FixedHeader'), 
                       rownames = FALSE,
                       filter = "top")

server = function(input,output){
  output$dt = DT::renderDataTable(expr = my_data_dt)
}

ui <- fluidPage(title = "Data Table Scroller Alternative",
                fluidRow(
                  column(width = 4,
                         DT::dataTableOutput("dt"),
                         style = "height:500px; overflow-y: scroll;"
                  )
                )
)

shinyApp(ui = ui, server = server)

from dt.

steadyfish avatar steadyfish commented on May 27, 2024

Not sure if this is possible, but if dom options l and f be made fixed/opaque (similar to the table header) while scrolling. This would work.

from dt.

yihui avatar yihui commented on May 27, 2024

Vertical scrolling is even trickier than horizontal scrolling. It is not a good idea to wrap the table in a column of overflow-y: scroll. As I said, you may put the filters at the bottom, although it does not solve all the problems.

I don't think I can fix this anywhere soon...

from dt.

steadyfish avatar steadyfish commented on May 27, 2024

That's fine! Can probably do away with this feature, Thanks!

from dt.

koushikbalaji1 avatar koushikbalaji1 commented on May 27, 2024

This bug is still alive ..

from dt.

akhil-gautam avatar akhil-gautam commented on May 27, 2024

The bug is still there

from dt.

yihui avatar yihui commented on May 27, 2024

Yes, it is there, and has been documented as a known issue: https://rstudio.github.io/DT/extensions.html I'm sorry, but this is too complicated and beyond my capabilities.

from dt.

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.