Ext.ux.grid.RowEditor 添加了用于保存和取消按钮的工具提示

Ext.ux.grid.RowEditor adding tooltip for save and cancel button

本文关键字:取消 按钮 工具提示 保存 用于 grid ux RowEditor 添加 Ext      更新时间:2023-09-26

>我需要为 Ext.ux.grid.RowEditor 添加工具提示消息保存和取消按钮,例如保存("保存 xxxx 记录")、取消("取消记录保存")。

我无法将工具提示属性添加到按钮配置区域。 像下面的代码

 var editor = new Ext.ux.grid.RowEditor({
    saveText: 'Submit',
    monitorValid: true,
    tooltip :'save the xxxx records'// like this
});

如何为指定的按钮添加工具提示?

提前谢谢。

请初始化工具提示以使其正常工作:

Ext.QuickTips.init();