<el-table highlight-selection-row @row-click="fn"> 兼容不了,得自己加高亮class: <el-table :row-class-name="getRowClassName">... getRowClassName ({row}) { // 选中行高亮 if (row.$v_checked) { return 'selection-row' } } Owner xiaocheng555 commented Nov 30, 2023 https://xiao...
<el-tableref="dataGrid"highlight-selection-row:header-cell-style="{color:'#000',backgroundColor:'#DCE6F0'}":data="datalist"@selection-change="handleCurrent"@select-all="selectAll"@row-dblclick="rowDblclick"><el-table-columnfixed="left"type="selection"align="center"width="48"></el-table...
::v-deep .el-table--enable-row-hover .el-table__body tr:hover > td.el-table__cell { background-color: #409eff; } ::v-deep .el-table__body tr.current-row > td.el-table__cell { background-color: #409eff; }
xiaocheng555/el-table-virtual-scrollPublic NotificationsYou must be signed in to change notification settings Fork43 Star244 New issue hikuyayaopened this issueDec 14, 2023· 2 comments hikuyayaclosed this ascompletedDec 14, 2023
table ref="multipleTable" :data="userData.slice((pagination.currentPage-1)*pagination.size, pagination.currentPage*pagination.size)" tooltip-effect="dark" style="width: 100%" @selection-change="handleSelectionChange" highlight-current-row id="table-key" default-expand-all v-loading="tableLoading...
<!-- paginationTable.vue --> <template> <el-table :data="tableData" ref="tableRef" style="width: 100%" height="100%" highlight-current-row :class="elTableClassName" :empty-text="emptyText" @selection-change="selectionChangeHandle" ...
table ref="multipleTable" :data="userData.slice((pagination.currentPage-1)*pagination.size, pagination.currentPage*pagination.size)" tooltip-effect="dark" style="width: 100%" @selection-change="handleSelectionChange" highlight-current-row id="table-key" default-expand-all v-loading="tableLoading...
Element UI version 2.3.4 OS/Browsers version Ubuntu 16.10/ Chrome Vue version 2.5.16 Reproduction Link https://jsfiddle.net/wz3trjqy/ Steps to reproduce 1- click on any row on table 2- click on the button What is Expected? The highlighte...
基于Element-UI的Table 组件开发的虚拟滚动组件,支持动态高度,解决数据量大时滚动卡顿的问题。 - feat: 兼容selectOnIndeterminate、highlightSelectionRow、default-sort、filt… · xiaocheng555/el-table-virtual-scroll@42d3c69
table ref="multipleTable" :data="userData.slice((pagination.currentPage-1)*pagination.size, pagination.currentPage*pagination.size)" tooltip-effect="dark" style="width: 100%" @selection-change="handleSelectionChange" highlight-current-row id="table-key" default-expand-all v-loading="tableLoading...