使用过 Element UI 树形表格的都知道当我们为表格数据进行刷新时,它的行的展开状态是不变的,而当我使用 vxe-table 时,默认情况下展开状态是不保留的,需要进行额外的设置,可在expand-config设置项里配置reserve属性为true,另外要使之生效,还得设置row-config里面的keyField属性。 vxe-table 是针对 vue2 或者3封装...
highlight-hover-row :menu-config="{}" :print-config="{}" :import-config="{}" :export-config="{}" @sort-change="sortChangeHandle" :sort-config="{ remote: true }" :expand-config="{ accordion: true, lazy: true }" :data="dataList" :checkbox-config="{}" > <vxe-column type="se...
增加参数 expand-config.height 2年前 README.zh-TW.md 增加参数 expand-config.height 2年前 babel.config.js 重构4.0 next 版本 4年前 gulpfile.js 修复图标显示乱码问题 2年前 index.ts 修复已知问题 4年前 package.json releases 4.3.6 2年前 ...
expandOpts () { return this.computeExpandOpts }, computeExpandOpts () { return Object.assign({}, getConfig().table.expandConfig, this.expandConfig) return Object.assign({}, XEUtils.clone(getConfig().table.expandConfig, true), this.expandConfig) }, treeOpts () { return this.computeTreeOp...
还有一个问题,使用vxe-table自带导出树状表格的时候,默认是不带未展开的数据的,需要在export-config把isAllExpand置为true,或者你在导出的时候勾选一下也可以,客户懒得点这一下
expandConfig: '展开行配置项', treeConfig: '树形结构配置项', contextMenu: '快捷菜单配置项', mouseConfig: '鼠标配置项(只对 edit-config.mode=cell 有效)', mouseConfig: '鼠标配置项', keyboardConfig: '按键配置项', editConfig: '可编辑配置项', validConfig: '校验配置项', 2 changes: 1 additi...
183 expandConfig?: object; 184 /** 185 * 树形结构配置项 186 */ 187 treeConfig?: object; 188 /** 189 * 快捷菜单配置项 190 */ 191 contextMenu?: object; 192 /** 193 * 鼠标配置项 194 */ 195 mouseConfig?: object; 196 /** 197 * 按键配置项 198 */ 199...
昨天产品小姐姐告诉老王,列表数据增加二级列表,跟服务端沟通后得知,二级列表数据根据一级列表数据动态调用接口查询获取。查找vxe-table api得知,vxe-table 设置tree-config、toggle-tree-expand,vxe-table-column添加tree-node。 特别提醒:vxe-table版本2.x
@toggle-tree-expand="toggleExpandChangeEvent" :custom-config="{storage: true}" :column-config="{isCurrent: true, isHover: true, resizable: true}" :row-config="{isCurrent: true, isHover: true}" :column-key="true" id="fk_table"
parentField: 'parentId', expandAll: true, reserve: true, }" :row-config="{ keyField: 'id', isHover: true }" 1. 2. 3. 4. 5. 6. 7. 参考: vxe tree expandAll:true当table数据更新后无法展开,只有第一次能展开才能生效的问题