Skip to content

Improve computation logic for sticky header#260611

Merged
eokoneyo merged 2 commits intoelastic:mainfrom
eokoneyo:patch/improve-sticky-header-computation
Apr 1, 2026
Merged

Improve computation logic for sticky header#260611
eokoneyo merged 2 commits intoelastic:mainfrom
eokoneyo:patch/improve-sticky-header-computation

Conversation

@eokoneyo
Copy link
Copy Markdown
Contributor

@eokoneyo eokoneyo commented Apr 1, 2026

Summary

This PR improves the computation logic that determines wether a row should become sticky or not, particularly addressing the reason why the first row wouldn't become sticky, it was previously within a useMemo and this meant we wouldn't recompute because the record for user interaction (virtualizer's scrollOffset) doesn't cause a re-evaluation so it's not till the user has the second row expanded that the logic evaluates as true.

Visuals

Untitled_sticky_header.mov

@eokoneyo eokoneyo self-assigned this Apr 1, 2026
@eokoneyo eokoneyo requested a review from a team as a code owner April 1, 2026 03:45
@eokoneyo eokoneyo added release_note:skip Skip the PR/issue when compiling release notes Team:SharedUX Platform AppEx-SharedUX (formerly Global Experience) t// backport:version Backport to applied version labels v9.3.3 labels Apr 1, 2026
@elasticmachine
Copy link
Copy Markdown
Contributor

Pinging @elastic/appex-sharedux (Team:SharedUX)

@elasticmachine
Copy link
Copy Markdown
Contributor

elasticmachine commented Apr 1, 2026

💔 Build Failed

Failed CI Steps

Test Failures

  • [job] [logs] FTR Configs #110 / Entity Analytics - Entity Resolution @ess @serverless @skipInServerlessMKI Entity Resolution CSV Upload "before all" hook for "should link matching entities to a target"
  • [job] [logs] FTR Configs #104 / Entity Analytics - Entity Resolution @ess @serverless @skipInServerlessMKI Entity Resolution CSV Upload "before all" hook for "should link matching entities to a target"
  • [job] [logs] FTR Configs #110 / Entity Analytics - Entity Resolution @ess @serverless @skipInServerlessMKI Entity Resolution CSV Upload "before all" hook for "should link matching entities to a target"
  • [job] [logs] FTR Configs #104 / Entity Analytics - Entity Resolution @ess @serverless @skipInServerlessMKI Entity Resolution CSV Upload "before all" hook for "should link matching entities to a target"

Metrics [docs]

Async chunks

Total size of all lazy-loaded chunks that will be downloaded as the user navigates the app

id before after diff
discover 1.6MB 1.6MB -43.0B

History

cc @eokoneyo

@eokoneyo
Copy link
Copy Markdown
Contributor Author

eokoneyo commented Apr 1, 2026

@elasticmachine merge upstream

@eokoneyo eokoneyo merged commit a92949d into elastic:main Apr 1, 2026
18 checks passed
@eokoneyo eokoneyo deleted the patch/improve-sticky-header-computation branch April 1, 2026 10:31
@kibanamachine
Copy link
Copy Markdown
Contributor

Starting backport for target branches: 9.3

https://github.com/elastic/kibana/actions/runs/23844272056

@kibanamachine
Copy link
Copy Markdown
Contributor

💔 All backports failed

Status Branch Result
9.3 Backport failed because of merge conflicts

You might need to backport the following PRs to 9.3:
- [Cascade] Virtualizer Improvements (#256699)
- fix issue with cascade not showing on mobile (#255838)
- [Cascade] Improve scroll sync implementation (#256511)

Manual backport

To create the backport manually run:

node scripts/backport --pr 260611

Questions ?

Please refer to the Backport tool documentation

jeramysoucy pushed a commit to jeramysoucy/kibana that referenced this pull request Apr 1, 2026
## Summary

This PR improves the computation logic that determines wether a row
should become sticky or not, particularly addressing the reason why the
first row wouldn't become sticky, it was previously within a `useMemo`
and this meant we wouldn't recompute because the record for user
interaction (virtualizer's scrollOffset) doesn't cause a re-evaluation
so it's not till the user has the second row expanded that the logic
evaluates as true.

#### Visuals


https://github.com/user-attachments/assets/02b333c9-143c-4d99-948f-2c59d64581a4

<!--
### Checklist

Check the PR satisfies following conditions. 

Reviewers should verify this PR satisfies this list as well.

- [ ] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md)
- [ ]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
- [ ] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [ ] If a plugin configuration key changed, check if it needs to be
allowlisted in the cloud and added to the [docker
list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker)
- [ ] This was checked for breaking HTTP API changes, and any breaking
changes have been approved by the breaking-change committee. The
`release_note:breaking` label should be applied in these situations.
- [ ] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [ ] The PR description includes the appropriate Release Notes section,
and the correct `release_note:*` label is applied per the
[guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
- [ ] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

### Identify risks

Does this PR introduce any risks? For example, consider risks like hard
to test bugs, performance regression, potential of data loss.

Describe the risk, its severity, and mitigation for each identified
risk. Invite stakeholders and evaluate how to proceed before merging.

- [ ] [See some risk
examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx)
- [ ] ...

-->

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
eokoneyo added a commit to davismcphee/kibana that referenced this pull request Apr 2, 2026
## Summary

This PR improves the computation logic that determines wether a row
should become sticky or not, particularly addressing the reason why the
first row wouldn't become sticky, it was previously within a `useMemo`
and this meant we wouldn't recompute because the record for user
interaction (virtualizer's scrollOffset) doesn't cause a re-evaluation
so it's not till the user has the second row expanded that the logic
evaluates as true.

#### Visuals


https://github.com/user-attachments/assets/02b333c9-143c-4d99-948f-2c59d64581a4

<!--
### Checklist

Check the PR satisfies following conditions. 

Reviewers should verify this PR satisfies this list as well.

- [ ] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md)
- [ ]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
- [ ] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [ ] If a plugin configuration key changed, check if it needs to be
allowlisted in the cloud and added to the [docker
list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker)
- [ ] This was checked for breaking HTTP API changes, and any breaking
changes have been approved by the breaking-change committee. The
`release_note:breaking` label should be applied in these situations.
- [ ] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [ ] The PR description includes the appropriate Release Notes section,
and the correct `release_note:*` label is applied per the
[guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
- [ ] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

### Identify risks

Does this PR introduce any risks? For example, consider risks like hard
to test bugs, performance regression, potential of data loss.

Describe the risk, its severity, and mitigation for each identified
risk. Invite stakeholders and evaluate how to proceed before merging.

- [ ] [See some risk
examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx)
- [ ] ...

-->

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
paulinashakirova pushed a commit to paulinashakirova/kibana that referenced this pull request Apr 2, 2026
## Summary

This PR improves the computation logic that determines wether a row
should become sticky or not, particularly addressing the reason why the
first row wouldn't become sticky, it was previously within a `useMemo`
and this meant we wouldn't recompute because the record for user
interaction (virtualizer's scrollOffset) doesn't cause a re-evaluation
so it's not till the user has the second row expanded that the logic
evaluates as true.

#### Visuals


https://github.com/user-attachments/assets/02b333c9-143c-4d99-948f-2c59d64581a4

<!--
### Checklist

Check the PR satisfies following conditions. 

Reviewers should verify this PR satisfies this list as well.

- [ ] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md)
- [ ]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
- [ ] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [ ] If a plugin configuration key changed, check if it needs to be
allowlisted in the cloud and added to the [docker
list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker)
- [ ] This was checked for breaking HTTP API changes, and any breaking
changes have been approved by the breaking-change committee. The
`release_note:breaking` label should be applied in these situations.
- [ ] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [ ] The PR description includes the appropriate Release Notes section,
and the correct `release_note:*` label is applied per the
[guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
- [ ] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

### Identify risks

Does this PR introduce any risks? For example, consider risks like hard
to test bugs, performance regression, potential of data loss.

Describe the risk, its severity, and mitigation for each identified
risk. Invite stakeholders and evaluate how to proceed before merging.

- [ ] [See some risk
examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx)
- [ ] ...

-->

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
@kibanamachine kibanamachine added the backport missing Added to PRs automatically when the are determined to be missing a backport. label Apr 2, 2026
@kibanamachine
Copy link
Copy Markdown
Contributor

Friendly reminder: Looks like this PR hasn’t been backported yet.
To create automatically backports add a backport:* label or prevent reminders by adding the backport:skip label.
You can also create backports manually by running node scripts/backport --pr 260611 locally
cc: @eokoneyo

6 similar comments
@kibanamachine
Copy link
Copy Markdown
Contributor

Friendly reminder: Looks like this PR hasn’t been backported yet.
To create automatically backports add a backport:* label or prevent reminders by adding the backport:skip label.
You can also create backports manually by running node scripts/backport --pr 260611 locally
cc: @eokoneyo

@kibanamachine
Copy link
Copy Markdown
Contributor

Friendly reminder: Looks like this PR hasn’t been backported yet.
To create automatically backports add a backport:* label or prevent reminders by adding the backport:skip label.
You can also create backports manually by running node scripts/backport --pr 260611 locally
cc: @eokoneyo

@kibanamachine
Copy link
Copy Markdown
Contributor

Friendly reminder: Looks like this PR hasn’t been backported yet.
To create automatically backports add a backport:* label or prevent reminders by adding the backport:skip label.
You can also create backports manually by running node scripts/backport --pr 260611 locally
cc: @eokoneyo

@kibanamachine
Copy link
Copy Markdown
Contributor

Friendly reminder: Looks like this PR hasn’t been backported yet.
To create automatically backports add a backport:* label or prevent reminders by adding the backport:skip label.
You can also create backports manually by running node scripts/backport --pr 260611 locally
cc: @eokoneyo

@kibanamachine
Copy link
Copy Markdown
Contributor

Friendly reminder: Looks like this PR hasn’t been backported yet.
To create automatically backports add a backport:* label or prevent reminders by adding the backport:skip label.
You can also create backports manually by running node scripts/backport --pr 260611 locally
cc: @eokoneyo

@kibanamachine
Copy link
Copy Markdown
Contributor

Friendly reminder: Looks like this PR hasn’t been backported yet.
To create automatically backports add a backport:* label or prevent reminders by adding the backport:skip label.
You can also create backports manually by running node scripts/backport --pr 260611 locally
cc: @eokoneyo

eokoneyo added a commit to eokoneyo/kibana that referenced this pull request Apr 13, 2026
## Summary

This PR improves the computation logic that determines wether a row
should become sticky or not, particularly addressing the reason why the
first row wouldn't become sticky, it was previously within a `useMemo`
and this meant we wouldn't recompute because the record for user
interaction (virtualizer's scrollOffset) doesn't cause a re-evaluation
so it's not till the user has the second row expanded that the logic
evaluates as true.

#### Visuals

https://github.com/user-attachments/assets/02b333c9-143c-4d99-948f-2c59d64581a4

<!--
### Checklist

Check the PR satisfies following conditions.

Reviewers should verify this PR satisfies this list as well.

- [ ] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md)
- [ ]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
- [ ] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [ ] If a plugin configuration key changed, check if it needs to be
allowlisted in the cloud and added to the [docker
list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker)
- [ ] This was checked for breaking HTTP API changes, and any breaking
changes have been approved by the breaking-change committee. The
`release_note:breaking` label should be applied in these situations.
- [ ] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [ ] The PR description includes the appropriate Release Notes section,
and the correct `release_note:*` label is applied per the
[guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
- [ ] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

### Identify risks

Does this PR introduce any risks? For example, consider risks like hard
to test bugs, performance regression, potential of data loss.

Describe the risk, its severity, and mitigation for each identified
risk. Invite stakeholders and evaluate how to proceed before merging.

- [ ] [See some risk
examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx)
- [ ] ...

-->

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
(cherry picked from commit a92949d)

# Conflicts:
#	src/platform/packages/shared/shared-ux/document_data_cascade/impl/src/components/data_cascade_impl/data_cascade_impl.tsx
@eokoneyo
Copy link
Copy Markdown
Contributor Author

💚 All backports created successfully

Status Branch Result
9.3

Note: Successful backport PRs will be merged automatically after passing CI.

Questions ?

Please refer to the Backport tool documentation

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has a backport PR but it still hasn't been merged. Please merge it ASAP to keep the branches relatively in sync.
cc: @eokoneyo

1 similar comment
@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has a backport PR but it still hasn't been merged. Please merge it ASAP to keep the branches relatively in sync.
cc: @eokoneyo

eokoneyo added a commit to eokoneyo/kibana that referenced this pull request Apr 14, 2026
This PR improves the computation logic that determines wether a row
should become sticky or not, particularly addressing the reason why the
first row wouldn't become sticky, it was previously within a `useMemo`
and this meant we wouldn't recompute because the record for user
interaction (virtualizer's scrollOffset) doesn't cause a re-evaluation
so it's not till the user has the second row expanded that the logic
evaluates as true.

https://github.com/user-attachments/assets/02b333c9-143c-4d99-948f-2c59d64581a4

<!--

Check the PR satisfies following conditions.

Reviewers should verify this PR satisfies this list as well.

- [ ] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md)
- [ ]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
- [ ] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [ ] If a plugin configuration key changed, check if it needs to be
allowlisted in the cloud and added to the [docker
list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker)
- [ ] This was checked for breaking HTTP API changes, and any breaking
changes have been approved by the breaking-change committee. The
`release_note:breaking` label should be applied in these situations.
- [ ] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [ ] The PR description includes the appropriate Release Notes section,
and the correct `release_note:*` label is applied per the
[guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
- [ ] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

Does this PR introduce any risks? For example, consider risks like hard
to test bugs, performance regression, potential of data loss.

Describe the risk, its severity, and mitigation for each identified
risk. Invite stakeholders and evaluate how to proceed before merging.

- [ ] [See some risk
examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx)
- [ ] ...

-->

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
(cherry picked from commit a92949d)

h
eokoneyo added a commit that referenced this pull request Apr 14, 2026
# Backport

This will backport the following commits from `main` to `9.3`:
- [Improve computation logic for sticky header
(#260611)](#260611)

<!--- Backport version: 11.0.1 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sorenlouv/backport)

<!--BACKPORT [{"author":{"name":"Eyo O.
Eyo","email":"7893459+eokoneyo@users.noreply.github.com"},"sourceCommit":{"committedDate":"2026-04-01T10:31:49Z","message":"Improve
computation logic for sticky header (#260611)\n\n## Summary\n\nThis PR
improves the computation logic that determines wether a row\nshould
become sticky or not, particularly addressing the reason why the\nfirst
row wouldn't become sticky, it was previously within a `useMemo`\nand
this meant we wouldn't recompute because the record for
user\ninteraction (virtualizer's scrollOffset) doesn't cause a
re-evaluation\nso it's not till the user has the second row expanded
that the logic\nevaluates as true.\n\n####
Visuals\n\n\nhttps://github.com/user-attachments/assets/02b333c9-143c-4d99-948f-2c59d64581a4\n\n\n\nCo-authored-by:
Elastic Machine
<elasticmachine@users.noreply.github.com>","sha":"a92949d0ce0c227a7a03d33b771e8c524dfbf31f","branchLabelMapping":{"^v9.4.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","backport
missing","Team:SharedUX","backport:version","v9.4.0","v9.3.3"],"title":"Improve
computation logic for sticky
header","number":260611,"url":"https://github.com/elastic/kibana/pull/260611","mergeCommit":{"message":"Improve
computation logic for sticky header (#260611)\n\n## Summary\n\nThis PR
improves the computation logic that determines wether a row\nshould
become sticky or not, particularly addressing the reason why the\nfirst
row wouldn't become sticky, it was previously within a `useMemo`\nand
this meant we wouldn't recompute because the record for
user\ninteraction (virtualizer's scrollOffset) doesn't cause a
re-evaluation\nso it's not till the user has the second row expanded
that the logic\nevaluates as true.\n\n####
Visuals\n\n\nhttps://github.com/user-attachments/assets/02b333c9-143c-4d99-948f-2c59d64581a4\n\n\n\nCo-authored-by:
Elastic Machine
<elasticmachine@users.noreply.github.com>","sha":"a92949d0ce0c227a7a03d33b771e8c524dfbf31f"}},"sourceBranch":"main","suggestedTargetBranches":["9.3"],"targetPullRequestStates":[{"branch":"main","label":"v9.4.0","branchLabelMappingKey":"^v9.4.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/260611","number":260611,"mergeCommit":{"message":"Improve
computation logic for sticky header (#260611)\n\n## Summary\n\nThis PR
improves the computation logic that determines wether a row\nshould
become sticky or not, particularly addressing the reason why the\nfirst
row wouldn't become sticky, it was previously within a `useMemo`\nand
this meant we wouldn't recompute because the record for
user\ninteraction (virtualizer's scrollOffset) doesn't cause a
re-evaluation\nso it's not till the user has the second row expanded
that the logic\nevaluates as true.\n\n####
Visuals\n\n\nhttps://github.com/user-attachments/assets/02b333c9-143c-4d99-948f-2c59d64581a4\n\n\n\nCo-authored-by:
Elastic Machine
<elasticmachine@users.noreply.github.com>","sha":"a92949d0ce0c227a7a03d33b771e8c524dfbf31f"}},{"branch":"9.3","label":"v9.3.3","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"}]}]
BACKPORT-->
@kibanamachine kibanamachine added v9.3.4 and removed backport missing Added to PRs automatically when the are determined to be missing a backport. labels Apr 14, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backport:version Backport to applied version labels release_note:skip Skip the PR/issue when compiling release notes Team:SharedUX Platform AppEx-SharedUX (formerly Global Experience) t// v9.3.3 v9.3.4 v9.4.0

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants