Skip to content

Commit

Permalink
Merge pull request #21316 from abpframework/datatablespatch
Browse files Browse the repository at this point in the history
Fix Datatable fnSetColumnVis legacy method usage issue
  • Loading branch information
maliming authored Nov 12, 2024
2 parents 2173e58 + 0f2f31d commit 9ebf579
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ var abp = abp || {};
};

var hideColumnWithoutRedraw = function (tableInstance, colIndex) {
tableInstance.fnSetColumnVis(colIndex, false, false);
tableInstance.api().column(colIndex).visible(false, false);
};

var hideEmptyColumn = function (cellContent, tableInstance, colIndex) {
Expand Down

0 comments on commit 9ebf579

Please sign in to comment.