Browse Source
Merge pull request #10785 from abpframework/_existingDefaultFnRowCallback
Remove `this` paramter when call `_existingDefaultFnRowCallback`.
pull/10812/head
albert
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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); |
|
|
|
|