fix row select (#3390)

This commit is contained in:
Anthony Dresser
2018-12-03 14:10:50 -08:00
committed by Karl Burtram
parent 38ae14cc4d
commit efd809971f

View File

@@ -68,7 +68,7 @@ export class RowNumberColumn<T> implements Slick.Plugin<T> {
width: this.currentColumnWidth,
resizable: false,
cssClass: this.options.cssClass,
focusable: true,
focusable: false,
selectable: false,
formatter: (r, c, v, cd, dc) => this.formatter(r, c, v, cd, dc)
};