table增加排序后回调

This commit is contained in:
theluyuan 2024-10-09 08:33:54 +08:00
parent c3ac588bdb
commit f4fe3db2b8
2 changed files with 20 additions and 0 deletions

10
dist/layui.js vendored
View File

@ -19976,6 +19976,7 @@ layui.define(['laytpl', 'laypage', 'layer', 'form', 'util'], function(exports){
,editTrigger: 'click' //单元格编辑的事件触发方式
,defaultToolbar: ['filter', 'exports', 'print'] //工具栏右侧图标
,autoSort: true //是否前端自动排序。如果否,则需自主排序(通常为服务端处理好排序)
,sortCallback:function(){}
,text: {
none: '无数据'
}
@ -20723,6 +20724,14 @@ layui.define(['laytpl', 'laypage', 'layer', 'form', 'util'], function(exports){
//同步表头父列的相关值
options.HAS_SET_COLS_PATCH || that.setColsPatch();
options.HAS_SET_COLS_PATCH = true;
// 判断是否需要执行排序回调
if(sort){
try{
that.config.sortCallback.call(that.config,res, curr, count, sort)
}catch (e) {
console.error(e)
}
}
};
table.cache[that.key] = data; //记录数据
@ -20752,6 +20761,7 @@ layui.define(['laytpl', 'laypage', 'layer', 'form', 'util'], function(exports){
//如果执行初始排序
if(sort){
return render();
}

View File

@ -281,6 +281,7 @@ layui.define(['laytpl', 'laypage', 'layer', 'form', 'util'], function(exports){
,editTrigger: 'click' //单元格编辑的事件触发方式
,defaultToolbar: ['filter', 'exports', 'print'] //工具栏右侧图标
,autoSort: true //是否前端自动排序。如果否,则需自主排序(通常为服务端处理好排序)
,sortCallback:function(){}
,text: {
none: '无数据'
}
@ -1028,6 +1029,14 @@ layui.define(['laytpl', 'laypage', 'layer', 'form', 'util'], function(exports){
//同步表头父列的相关值
options.HAS_SET_COLS_PATCH || that.setColsPatch();
options.HAS_SET_COLS_PATCH = true;
// 判断是否需要执行排序回调
if(sort){
try{
that.config.sortCallback.call(that.config,res, curr, count, sort)
}catch (e) {
console.error(e)
}
}
};
table.cache[that.key] = data; //记录数据
@ -1057,6 +1066,7 @@ layui.define(['laytpl', 'laypage', 'layer', 'form', 'util'], function(exports){
//如果执行初始排序
if(sort){
return render();
}