Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3421017
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
drupal-3421017
Commits
d5823e86
Commit
d5823e86
authored
17 years ago
by
Gábor Hojtsy
Browse files
Options
Downloads
Patches
Plain Diff
#211404
by dvessel: improve tableheader.js performance in all browsers, solves freeze in IE7
parent
c3dccba2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
misc/tableheader.js
+18
-25
18 additions, 25 deletions
misc/tableheader.js
with
18 additions
and
25 deletions
misc/tableheader.js
+
18
−
25
View file @
d5823e86
...
@@ -23,7 +23,6 @@ Drupal.behaviors.tableHeader = function (context) {
...
@@ -23,7 +23,6 @@ Drupal.behaviors.tableHeader = function (context) {
var
table
=
$
(
this
).
parent
(
'
table
'
)[
0
];
var
table
=
$
(
this
).
parent
(
'
table
'
)[
0
];
headerClone
.
table
=
table
;
headerClone
.
table
=
table
;
// Finish initialzing header positioning.
// Finish initialzing header positioning.
headerClone
.
resizeWidths
=
true
;
tracker
(
headerClone
);
tracker
(
headerClone
);
$
(
table
).
addClass
(
'
sticky-table
'
);
$
(
table
).
addClass
(
'
sticky-table
'
);
...
@@ -34,36 +33,29 @@ Drupal.behaviors.tableHeader = function (context) {
...
@@ -34,36 +33,29 @@ Drupal.behaviors.tableHeader = function (context) {
function
tracker
(
e
)
{
function
tracker
(
e
)
{
// Save positioning data.
// Save positioning data.
var
viewHeight
=
document
.
documentElement
.
scrollHeight
||
document
.
body
.
scrollHeight
;
var
viewHeight
=
document
.
documentElement
.
scrollHeight
||
document
.
body
.
scrollHeight
;
if
(
e
.
viewHeight
!=
viewHeight
||
e
.
resizeWidths
)
{
if
(
e
.
viewHeight
!=
viewHeight
)
{
e
.
viewHeight
=
viewHeight
;
e
.
viewHeight
=
viewHeight
;
e
.
vPosition
=
$
(
e
.
table
).
offset
().
top
;
e
.
vPosition
=
$
(
e
.
table
).
offset
().
top
-
4
;
e
.
hPosition
=
$
(
e
.
table
).
offset
().
left
;
e
.
hPosition
=
$
(
e
.
table
).
offset
().
left
;
e
.
vLength
=
$
(
e
.
table
).
height
();
e
.
vLength
=
e
.
table
.
clientHeight
-
100
;
e
.
resizeWidths
=
true
;
// Resize header and its cell widths.
var
parentCell
=
$
(
'
th
'
,
e
.
table
);
$
(
'
th
'
,
e
).
each
(
function
(
index
)
{
var
cellWidth
=
parentCell
.
eq
(
index
).
css
(
'
width
'
);
// Exception for IE7.
if
(
cellWidth
==
'
auto
'
)
{
var
cellWidth
=
parentCell
.
get
(
index
).
clientWidth
+
'
px
'
;
}
$
(
this
).
css
(
'
width
'
,
cellWidth
);
});
$
(
e
).
css
(
'
width
'
,
$
(
e
.
table
).
css
(
'
width
'
));
}
}
// Track horizontal positioning relative to the viewport and set visibility.
// Track horizontal positioning relative to the viewport and set visibility.
var
hScroll
=
document
.
documentElement
.
scrollLeft
||
document
.
body
.
scrollLeft
;
var
hScroll
=
document
.
documentElement
.
scrollLeft
||
document
.
body
.
scrollLeft
;
var
vScroll
=
document
.
documentElement
.
scrollTop
||
document
.
body
.
scrollTop
;
var
vOffset
=
(
document
.
documentElement
.
scrollTop
||
document
.
body
.
scrollTop
)
-
e
.
vPosition
;
var
vOffset
=
vScroll
-
e
.
vPosition
-
4
;
var
visState
=
(
vOffset
>
0
&&
vOffset
<
e
.
vLength
)
?
'
visible
'
:
'
hidden
'
;
var
visState
=
(
vOffset
>
0
&&
vOffset
<
e
.
vLength
-
100
)
?
'
visible
'
:
'
hidden
'
;
$
(
e
).
css
({
left
:
-
hScroll
+
e
.
hPosition
+
'
px
'
,
visibility
:
visState
});
$
(
e
).
css
({
left
:
-
hScroll
+
e
.
hPosition
+
'
px
'
,
visibility
:
visState
});
// Resize cell widths.
if
(
e
.
resizeWidths
)
{
var
cellCount
=
0
;
$
(
'
th
'
,
e
).
each
(
function
()
{
var
cellWidth
=
parseInt
(
$
(
'
th
'
,
e
.
table
).
eq
(
cellCount
).
css
(
'
width
'
));
// Exception for IE7.
if
(
!
cellWidth
)
{
var
cellWidth
=
$
(
'
th
'
,
e
.
table
).
eq
(
cellCount
).
width
();
}
cellCount
++
;
$
(
this
).
css
(
'
width
'
,
cellWidth
+
'
px
'
);
});
$
(
e
).
css
(
'
width
'
,
$
(
e
.
table
).
width
()
+
'
px
'
);
e
.
resizeWidths
=
false
;
}
};
};
// Track scrolling.
// Track scrolling.
...
@@ -84,7 +76,8 @@ Drupal.behaviors.tableHeader = function (context) {
...
@@ -84,7 +76,8 @@ Drupal.behaviors.tableHeader = function (context) {
}
}
time
=
setTimeout
(
function
()
{
time
=
setTimeout
(
function
()
{
$
(
headers
).
each
(
function
()
{
$
(
headers
).
each
(
function
()
{
this
.
resizeWidths
=
true
;
// Force cell width calculation.
this
.
viewHeight
=
0
;
tracker
(
this
);
tracker
(
this
);
});
});
// Reset timer
// Reset timer
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment