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
#1090
#302
解决方式见:https://github.com/xuliangzhan/vxe-table-demo
HTML input 和 vxe-input
import XEUtils from 'xe-utils' // 可以直接 import 使用也可以挂载 vue 实例中 Vue.prototype.$utils = XEUtils
vxe-table 基础表格:标签方式调用,用于静态列 vxe-grid 高级表格:JSON方式调用,全动态方式,集成 vxe-table、vxe-toolbar、vxe-pager 于一体的全功能高级表格
表头: column:列配置对象 columnIndex:相对于 columns 中的索引 $columnIndex:相对于可视区渲染中的列索引(也就是说和实际渲染 th 相对应) _columnIndex:相对于当前表格列的索引 单元格: row:行数据对象 rowIndex:相对于 data 中的索引 $rowIndex:相对于可视区渲染中的行索引(也就是说和实际渲染 tr 相对应) _rowIndex:相对于当前表格数据的索引(比如排序后、筛选之后等的相对索引) column:列配置对象 columnIndex:相对于 columns 中的索引 $columnIndex:相对于可视区渲染中的列索引(也就是说和实际渲染 th 相对应) _columnIndex:相对于当前表格列的索引 表尾: $rowIndex:相对于 footerData 中的索引 items:行的数据集 itemIndex:行的数据集中项索引(相对于 items 的索引) column:列配置对象 columnIndex:相对于 columns 中的索引 _columnIndex:相对于当前表格列的索引
树表格只支持根节点的 insert、remove 以及其他相关的方法,该方法不能用于子孙节点
#374
默认支持原生的 input、select、textarea 可编辑列渲染,也支持高级的 $input、$select、$textarea 可编辑列渲染,你可以任意选择使用自行封装的组件或者第三 方组件库都是可以集成渲染的
#230
对于这种非常规渲染的的场景,你可以使用 auto-resize 或者 sync-resize 或者在显示完之后手动 调用 recalculate 方法
#60
这是该组件设计原理,任何动态的数据都属于临时数据,不会双向同步 data 属性, 可以通过 data.push 自行去操作数据源,将放弃内部 CRUD 管理行为
The text was updated successfully, but these errors were encountered:
No branches or pull requests
问题描述:2.9.24+ 分组列头支持 vxe-colgroup(旧 vxe-table-colgroup),原先的 vxe-column(旧 vxe-table-column)也正常支持
#1090
问题描述:_xeUtils.default.browse is not a function
#302
问题描述:渲染器中 input 和 $input 有什么区别?
问题描述:xe-utils 和表格是属于两个不同的库,仅仅只是依赖关系,在项目中使用工具类的相关方法
问题描述:关于 table 和 grid 的区别
问题描述:关于 columnIndex、$columnIndex、_columnIndex、rowIndex、$rowIndex、_rowIndex 的区别
问题描述:树表格使用 insert、remove 报错
问题描述:表格支持哪些可编辑列渲染
#374
问题描述:将多个表格放在显示隐藏的 Tab 切换中,会导致列宽错乱
#230
问题描述:表格动态 insert 或 remove 的数据都不同步 data 吗
#60
The text was updated successfully, but these errors were encountered: