mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -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>`;
|
return `<button tabindex=-1 class="${iconCssClasses} ${buttonTypeCssClass}" title="${escapedTitle}" aria-label="${escapedTitle}" ${disabledAttribute}>${buttonText}</button>`;
|
||||||
},
|
},
|
||||||
name: this.options.name,
|
name: this.options.name,
|
||||||
|
toolTip: this.options.title,
|
||||||
resizable: this.options.resizable,
|
resizable: this.options.resizable,
|
||||||
selectable: false
|
selectable: false
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -53,7 +53,8 @@ export class RowMoveManager<T extends Slick.SlickData> extends BaseClickableColu
|
|||||||
resizable: this.options.resizable,
|
resizable: this.options.resizable,
|
||||||
selectable: false,
|
selectable: false,
|
||||||
behavior: this.options.behavior,
|
behavior: this.options.behavior,
|
||||||
cssClass: this.options.iconCssClass
|
cssClass: this.options.iconCssClass,
|
||||||
|
toolTip: this.options.title
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user