We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug Type: Component
Component
3.5.11
2.8.4
Chrome 129.0.6668.90 / windows11
Vite
el-table-v2
Element Plus Playground
the fixed rows in the fixed columns is effective
the fixed rows in the fixed columns are not effective.
(empty)
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Bug Type:
Component
Environment
3.5.11
2.8.4
Chrome 129.0.6668.90 / windows11
Vite
Reproduction
Related Component
el-table-v2
Reproduction Link
Element Plus Playground
Steps to reproduce
<script setup lang="ts"> import { ElementPlus } from '@element-plus/icons-vue' import { version as epVersion } from 'element-plus' import { ref, version as vueVersion } from 'vue' const columns = Array.from({length: 10}).map((_, index) => ({ key: `column-${index}`, dataKey: `column-${index}`, title: `Column ${index}`, fixed: index <= 1 ? 'left' : false, width: 150 })) const list = Array.from({length: 1000}).map((_, rowIndex) => { return columns.reduce( (rowData, column, columnIndex) => { rowData[column.dataKey] = `Row ${rowIndex + 1} - Col ${columnIndex}` return rowData }, { id: `${rowIndex}`, parentId: null, } ) }) const fixedData = list.slice(0, 2) const data = list.slice(2) </script>version: {{ epVersion}}
What is Expected?
the fixed rows in the fixed columns is effective
What is actually happening?
the fixed rows in the fixed columns are not effective.
Additional comments
(empty)
The text was updated successfully, but these errors were encountered: