20 lines
334 B
PHP
Raw Normal View History

2021-03-29 19:52:01 +08:00
<?php
namespace catcher\library\table;
trait Events
{
/**
* 表格选择事件
*
* @time 2021年03月29日
* @return mixed
*/
public function selectionChange()
{
$this->appendEvents([
'selection-change' => 'handleSelectMulti'
]);
return $this;
}
}