mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 01:25:37 -05:00
Adding properties grid enhancements in execution plan (#20208)
* init push * Fixing properties in plan comparison * Add long Text Cell viewer * Disabling auto edit by default * Removing text editor
This commit is contained in:
@@ -7,6 +7,7 @@ import { escape } from 'sql/base/common/strings';
|
||||
import { getIconCellValue, IconColumnOptions, TableColumn } from 'sql/base/browser/ui/table/plugins/tableColumn';
|
||||
|
||||
export interface TextWithIconColumnOptions extends IconColumnOptions {
|
||||
editor?: any;
|
||||
}
|
||||
|
||||
export class TextWithIconColumn<T extends Slick.SlickData> implements TableColumn<T> {
|
||||
@@ -26,7 +27,8 @@ export class TextWithIconColumn<T extends Slick.SlickData> implements TableColum
|
||||
width: this.options.width,
|
||||
name: this.options.name,
|
||||
cssClass: 'slick-icon-cell',
|
||||
headerCssClass: this.options.headerCssClass
|
||||
headerCssClass: this.options.headerCssClass,
|
||||
editor: this.options.editor
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user