1 Star 7 Fork 3

XE / vxe-table-plugin-shortcut-key

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

vxe-table-plugin-shortcut-key

gitee star npm version npm downloads npm license

基于 vxe-table 的表格插件,为键盘操作提供快捷键的设置

Compatibility

依赖 vxe-table v4 版本

Installing

npm install vxe-table@next vxe-table-plugin-shortcut-key@next
// ...
import VXETable from 'vxe-table'
import VXETablePluginShortcutKey from 'vxe-table-plugin-shortcut-key'
// ...

VXETable.use(VXETablePluginShortcutKey, {
  // 快捷键监听
  listener: {
    'Ctrl + V' (params, evnt) {
      console.log('粘贴')
    }
  },
  // 功能键设置
  setting: {
    'pager.prevPage': 'ArrowLeft',
    'pager.nextPage': 'ArrowRight', // 单个按键
    'pager.prevJump': 'Shift + W',
    'pager.nextJump': 'Shift + S' // 组合键
  }
})

API

disabled 禁用快捷键

disabled: string[]

listener 快捷键监听

listener: { key: Function(params, event) }

setting 功能键设置

setting: { code: string }

code 功能编码 describe 描述 key 参考键值
table.edit.actived 只对 edit-config 启用后有效,当单元格处于选中状态时,则进入编辑 F2
table.edit.closed 只对 edit-config 启用后有效,当单元格处于激活状态时,则退出编辑 Esc
table.edit.tab.leftMove 只对 edit-config.mode=cell / mouse-config.selected 启用后有效,当单元格处于激活状态或者选中状态,则移动到左侧单元格 Shift + Tab
table.edit.tab.rightMove 只对 edit-config.mode=cell / mouse-config.selected 启用后有效,当单元格处于激活状态或者选中状态,则移动到右侧单元格 Tab
table.edit.enter.upMove 只对 edit-config.mode=cell / mouse-config.selected 启用后有效,当单元格处于激活状态或者选中状态,则移动到上面单元格 Shift + Enter
table.edit.enter.downMove 只对 edit-config.mode=cell / mouse-config.selected 启用后有效,当单元格处于激活状态或者选中状态,则移动到下面单元格 Enter
table.cell.upMove 只对 mouse-config.selected 启用后有效,当单元格处于选中状态,则移动到上面的单元格 ArrowUp
table.cell.downMove 只对 mouse-config.selected 启用后有效,当单元格处于选中状态,则移动到下面的单元格 ArrowDown
table.cell.leftMove 只对 mouse-config.selected 启用后有效,当单元格处于选中状态,则移动到左边的单元格 ArrowLeft
table.cell.rightMove 只对 mouse-config.selected 启用后有效,当单元格处于选中状态,则移动到右边的单元格 ArrowRight
table.row.current.topMove 只对 highlight-current-row 启用后有效,高亮行向上移动
table.row.current.downMove 只对 highlight-current-row 启用后有效,高亮行向上移动
pager.prevPage 只对 grid.pager-config 启用后有效,则进入上一页
pager.nextPage 只对 grid.pager-config 启用后有效,则进入下一页
pager.prevJump 只对 grid.pager-config 启用后有效,则向上翻页
pager.nextJump 只对 grid.pager-config 启用后有效,则向下翻页

License

MIT © 2019-present, Xu Liangzhan

MIT License Copyright (c) 2019 Xu Liangzhan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

基于 vxe-table 表格的增强插件,为键盘操作提供快捷键的设置 展开 收起
JavaScript 等 2 种语言
MIT
取消

发行版 (1)

全部

贡献者

全部

近期动态

加载更多
不能加载更多了
JavaScript
1
https://gitee.com/x-extends/vxe-table-plugin-shortcut-key.git
git@gitee.com:x-extends/vxe-table-plugin-shortcut-key.git
x-extends
vxe-table-plugin-shortcut-key
vxe-table-plugin-shortcut-key
master

搜索帮助