mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-29 09:35:38 -05:00
add title for column header cell (#19759)
This commit is contained in:
@@ -43,6 +43,7 @@ export class ButtonColumn<T extends Slick.SlickData> extends BaseClickableColumn
|
||||
return `<button tabindex=-1 class="${iconCssClasses} ${buttonTypeCssClass}" title="${escapedTitle}" aria-label="${escapedTitle}" ${disabledAttribute}>${buttonText}</button>`;
|
||||
},
|
||||
name: this.options.name,
|
||||
toolTip: this.options.title,
|
||||
resizable: this.options.resizable,
|
||||
selectable: false
|
||||
};
|
||||
|
||||
@@ -53,7 +53,8 @@ export class RowMoveManager<T extends Slick.SlickData> extends BaseClickableColu
|
||||
resizable: this.options.resizable,
|
||||
selectable: false,
|
||||
behavior: this.options.behavior,
|
||||
cssClass: this.options.iconCssClass
|
||||
cssClass: this.options.iconCssClass,
|
||||
toolTip: this.options.title
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user