Browse Source
Merge pull request #21316 from abpframework/datatablespatch
Fix Datatable fnSetColumnVis legacy method usage issue
pull/21317/head
maliming
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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
|
|
@ -226,7 +226,7 @@ var abp = abp || {}; |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
var hideColumnWithoutRedraw = function (tableInstance, colIndex) { |
|
|
var hideColumnWithoutRedraw = function (tableInstance, colIndex) { |
|
|
tableInstance.fnSetColumnVis(colIndex, false, false); |
|
|
tableInstance.api().column(colIndex).visible(false, false); |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
var hideEmptyColumn = function (cellContent, tableInstance, colIndex) { |
|
|
var hideEmptyColumn = function (cellContent, tableInstance, colIndex) { |
|
|
|