From 0ca293f2c914c86019df4a32a9a613cf258cb2f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?= <3277200+sentsim@users.noreply.github.com> Date: Fri, 18 Aug 2023 17:30:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20treeTable=20=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E7=94=A8=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/treeTable.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/treeTable.html b/examples/treeTable.html index afaa7b7e..d59d349b 100644 --- a/examples/treeTable.html +++ b/examples/treeTable.html @@ -45,6 +45,11 @@ layui.use(['treeTable'], function(){ ]], page: true }); + + // 单元格工具事件 + treeTable.on('row(test)', function (obj) { + console.log(obj); + }); });