SetEditRow方法用于将指定行的数据设置为编辑状态,并自动为该行添加一个编辑框,以便用户可以输入或编辑该行的数据。以下是SetEditRow方法的一般用法: 1. 获取要编辑的行对象:使用Vxe-table的行选择器(如行索引或行选择器对象)获取要编辑的行对象。 2. 调用SetEditRow方法:在获取到行对象后,调用SetEditRow方法,将该...
列数过多,用户需要滚动查看某一列,看到需要改动的列时如果是调用setEditRow(row)方法激活行的话,就会自动滚动到第一列,需要一个方法可以不触发滚动 建议的 API 是什么样的: setEditRow() 增加是否激活第一个单元格的参数 是否已有其他不错的替代方案: No response...
setEditRow(row)) // 已废弃 case 'insert_actived': return $xetable.insert({}).then(({ row }) => $xetable.setEditRow(row)) // 已废弃 case 'mark_cancel': triggerPendingEvent(code) break @@ -785,7 +753,6 @@ export default defineComponent({ filterList = $xetable.getCheckedFilters(...
支持显示多个单元格校验 优化setEditRow 方法支持指定列 增加方法 setPendingRow 增加方法 togglePendingRow 增加方法 getPendingRecords 增加方法 hasPendingByRow 增加方法 clearPendingRow icon 增加参数 status pulldown 增加插槽 header 增加插槽 footer select 增加插槽 header 增加插槽 option 增加插槽 footer相关...
$grid.setEditCell(newRow,'age') } },asyncremoveRow (row) {const$grid =this.$refs.gridRefif($grid) {consttype =awaitVxeUI.modal.confirm('您确定要删除该数据?')if(type ==='confirm') {await$grid.remove(row)this.updateFootEvent() ...
' }) } } const insertEvent = (row: any) => { const $table = xTable.value const record = { checked: false } $table.insertAt(record, row).then(({ row }) => { $table.setEditRow(row) }) } const getInsertEvent = () => { const $table = xTable.value const insertRecords =...
actived.row === row }, setActiveRow (row) { // if (process.env.VUE_APP_VXE_TABLE_ENV === 'development') { // warnLog('vxe.error.delFunc', ['setActiveRow', 'setEditRow']) // } if (process.env.VUE_APP_VXE_TABLE_ENV === 'development') { warnLog('vxe.error.delFunc', [...
name: 'setEditRow(row)', name: 'setEditRow(row;默认激活第一列,可以指定列 fieldOrColumn)', desc: '用于 edit-config,激活行编辑并激活第一个单元格', version: '3.5.7', type: 'Promise<any>', enum: '', defVal: 'row: Row', defVal: 'row: Row, fieldOrColumn?: string | ColumnInfo'...
insertNextAt(record, currRow); // 插入子节点 await $table.setEditRow(newRow); // 插入子节点 } } }; </script> 系统信息 操作系统: Node 版本: 包管理器 (npm/yarn/pnpm) 及其版本: crudboy added a commit to crudboy/vue-vben-admin that referenced this issue Mar 6, 2024 fix(...
Unified 1 change: 1 addition & 0 deletions1src/components/VxeTable/src/methods.ts Original file line numberDiff line numberDiff line change Expand Up@@ -158,6 +158,7 @@ export const gridComponentMethodKeys: ( 'setEditRow', 'setEditCell', ...