- Fixed "Types not appearing after setting signature group", closed #831, closed #837

This commit is contained in:
Mark Friedrich
2019-08-12 22:31:27 +02:00
parent 70f7501a43
commit 1cfbc16e9b
2 changed files with 4 additions and 4 deletions

View File

@@ -1131,7 +1131,7 @@ define([
* @returns {*}
*/
let getNeighboringCell = (tableApi, cell, columnSelector) => {
return tableApi.cell(tableApi.row(cell).index(), columnSelector);
return tableApi.cell(tableApi.cell(cell).index().row, columnSelector);
};
/**
@@ -1768,7 +1768,7 @@ define([
targets: 4,
name: 'description',
orderable: false,
searchable: false,
searchable: true,
title: 'description',
class: [config.tableCellFocusClass, config.tableCellActionClass].join(' '),
type: 'html',

View File

@@ -1131,7 +1131,7 @@ define([
* @returns {*}
*/
let getNeighboringCell = (tableApi, cell, columnSelector) => {
return tableApi.cell(tableApi.row(cell).index(), columnSelector);
return tableApi.cell(tableApi.cell(cell).index().row, columnSelector);
};
/**
@@ -1768,7 +1768,7 @@ define([
targets: 4,
name: 'description',
orderable: false,
searchable: false,
searchable: true,
title: 'description',
class: [config.tableCellFocusClass, config.tableCellActionClass].join(' '),
type: 'html',