Questions tagged [fixed-header-tables]

Tables in which the first row (typically holding the column names) is fixed (i.e.: it doesn't scroll).

Tables in which the first row (typically holding the column names) is fixed (i.e.: it doesn't scroll).

142 questions
1
vote
2 answers

Fixed table headers with a fixed banner div

I have used code from this SO question to successfully create fixed table headers, however I'm having a few issues adapting it to my page that I can't figure out. I'm a little new to Javascript/jQuery so please bear with me a little. The code relies…
Equalsk
  • 7,954
  • 2
  • 41
  • 67
1
vote
2 answers

Strange IE 7 behavior in an absolute table header with fixed widths

Once again, I'm at a loss with IE7 on this one. I'm making a fixed header scrollable body table based almost entirely on CSS (horizontal scroll still needs javascript to work). It is a modified version based off of this one. It looks good in the…
ShadowScripter
  • 7,314
  • 4
  • 36
  • 54
0
votes
0 answers

Unable to apply sticky header using flatlist with fixed first column and horizontal rest of the columns

I achieved both fixed first column and rest of the columns with horizontal scroll by using native react flatlist component. But im unable to apply headers sticky.
0
votes
0 answers

Flutter- make horizontally scrollable multiple tables with fixed header and scrollable body

I am trying to have multiple tables in Flutter so that I can scroll horizontally to view the tables one after another. The table header needs to be fixed and the body needs to be vertically scroll-able. I have used table_sticky_headers package.…
Istiaque Ahmed
  • 6,072
  • 24
  • 75
  • 141
0
votes
1 answer

Two tables meant to appear as one for fixed header scrolling -- fixed column width issues

The concept seems simple enough: I am trying to implement fixed header scrolling by dividing the header into table A and the actual data into table B. By giving the columns precise matching fixed widths they should appear as one table. However,…
Matthew Cox
  • 13,566
  • 9
  • 54
  • 72
0
votes
1 answer

Flutter Table with fixed Header and scrollable contents, no 3rd part lib

I don't want to use 3rd part, so I am trying to achieve something simple, just use SingleChildScroolView inside a Column, but it is not working. The widgets that I have are these: Scaffold Padding Column Obx Divider Obx Column …
GnRSlashSP
  • 545
  • 1
  • 5
  • 10
0
votes
0 answers

HTML + CSS fixed Colum and fixed headers

I need some help please, I have search a lot and found how to get fixed 1st column and fixed header just using CSS, it works but it has some problems. The first column header doesn't remain fixed, the entire 1st column remains fixed like I want but…
0
votes
0 answers

Datatables fixed header is not being recognized after it's been added, removed and then re-added to DOM

I am using Datatables for a very large and extensive table that needs to scroll horizontally. I am using FixedHeader in my table initialization so I can always see the table header information/columns. I have three different scroll-x scrollbars. One…
0
votes
0 answers

Issue with Firefox and FixedHeader

My issue is that when I scroll down on the page, Firefox scrolls the body up. I'm using FixedHeader v3.2.4. In Chrome work's fine but not in Firefox. Any idea? Thanks in advance.
0
votes
1 answer

fixed header having flip cards and links overlay over it

(sorry for ugly output, code is jammed in from site) As the title tells, I'm having overlay issues, seen in my bootstrap row of projectLinks and in my flip card images. I've tried z-index, as seen in the code, but it still isn't layering correctly.…
0
votes
1 answer

How to set scrollX in FixedHeader with dataTables_scrollHead

This in usualy datatable but if i scroll vertical my scroll is missing
0
votes
1 answer

CSS: Fixed header table - how to not focus on the out-of-view row behind the fixed header when scrolled up?

Background I have a table with fixed header (fixed s to be exact), with vertically scrollable content. You just scroll up and down with the scroll bar as usual, and you can scroll up and down with up/down arrow keys. I am highlighting where is…
Beki
  • 1,344
  • 1
  • 12
  • 22
0
votes
0 answers

R Shiny- fixedHeader extension working but fixedColumns isn't. Why?

I think I am following correctly the DataTables Extensions instructions to freeze the headers and first column in a datatable. The headers extension is working correctly but the columns one is not. What am I doing wrong? I created a…
AFS
  • 93
  • 1
  • 5
0
votes
0 answers

DataTable : I got duplicate fixed header when I load other tables in the pages via ajax

I am having issues, using DataTable filled by an ajax request and when I load other tables in the pages via ajax, I got duplicate fixed header, for every table a new fixed header. I am using ajax to load every page. This is datatable script/code…
Nay
  • 27
  • 5
0
votes
1 answer

How can I fix the position of the header of data.table in shiny-app

Let say I have below app - library(shiny) library(DT) library(dplyr) ui <- fluidPage( div(style = "height: 300px; width: 100%; overflow-y: scroll;", DTOutput("aaa", height = '400px')) ) server <- function(input, output) { output$aaa = …
Bogaso
  • 2,838
  • 3
  • 24
  • 54