I am looking to implement tooltip messages for the save and cancel buttons in Ext.ux.grid.RowEditor. For example, I want the save button to have a tooltip that says "Save the records" and the cancel button to have a tooltip that says "Cancel saving the record."
I am having trouble adding the tooltip property to the button configuration area, similar to the code below:
var editor = new Ext.ux.grid.RowEditor({
saveText: 'Submit',
monitorValid: true,
tooltip :'save the xxxx records'// like this
});
Can anyone provide guidance on how to add the tooltip for the specified button?
Thank you in advance.