From 2884ad38e1d9612035db2bf752ce1ed3088c4650 Mon Sep 17 00:00:00 2001 From: maliming Date: Tue, 30 Nov 2021 16:51:16 +0800 Subject: [PATCH] Remove `this` paramter when call `_existingDefaultFnRowCallback`. --- .../datatables/datatables-extensions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js index 0306550df5..1c981aea3b 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js @@ -266,7 +266,7 @@ var abp = abp || {}; { fnRowCallback: function (nRow, aData, iDisplayIndex, iDisplayIndexFull) { if (_existingDefaultFnRowCallback) { - _existingDefaultFnRowCallback(this, nRow, aData, iDisplayIndex, iDisplayIndexFull); + _existingDefaultFnRowCallback(nRow, aData, iDisplayIndex, iDisplayIndexFull); } renderRowActions(this, nRow, aData, iDisplayIndex, iDisplayIndexFull);