Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/modules/types/edition/slick_grid/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -371,8 +371,8 @@
}

$(ctx.grid.getHeaderRow()).on(
':input',
'change keyup',
':input',
_.debounce(function () {
let columnId = $(this).data('columnId');
if (columnId != null) {
Expand Down Expand Up @@ -1254,7 +1254,7 @@
that.module.getConfiguration('slick.defaultColumnWidth') || 80,
dataItemColumnValueExtractor(item) {
// In order to use jpath, we return the row instead of the column
// TODO: use jpath in coldef here?

Check warning on line 1257 in src/modules/types/edition/slick_grid/view.js

View workflow job for this annotation

GitHub Actions / nodejs / lint-eslint

Unexpected 'todo' comment: 'TODO: use jpath in coldef here?'
return item;
},
explicitInitialization: true,
Expand Down Expand Up @@ -1370,7 +1370,6 @@
'keepSelected',
);
this.searchFilter = function (item) {
// keep s
if (keepSelected) {
let selected = that._getSelectedItems();
if (
Expand Down
Loading