- >table.set(options); //设定全局默认参数。options即各项基础参数
- > table.on('event(filter)', callback); //事件监听。event为内置事件名(详见下文),filter为容器lay-filter设定的值
- > table.init(filter, options); //filter为容器lay-filter设定的值,options即各项基础参数。例子见:转换静态表格
- > table.checkStatus(id); //获取表格选中行(下文会有详细介绍)。id 即为 id 参数对应的值
- > table.render(options); //用于表格方法级渲染,核心方法。应该不用再过多解释了,详见:方法级渲染
- > table.reload(id, options); //表格重载
- > table.resize(id); //重置表格尺寸
- > table.exportFile(id, data, type); //导出数据