Cuando se necesite agregar un tooltip a un componente de Extjs solo es necesario agregar la propiedad inputAttrTpl seguida de  ” data-qtip=’mitextoeneltooltip'”

 

Ejemplo:

var textBoxCostoInd = Ext.create('Ext.form.Number', {
id: 'txtCostoInd',
name: 'txtCostoInd',
allowBlank: false,
width: 250,
labelWidth: 150,
inputAttrTpl: " data-qtip='Incluye depreciación, fletes, instalación y otros servicios, por cada pieza producida' ",
minValue: 0,
allowDecimals: true,
decimalPrecision: 2,
fieldLabel: txtCostoInd
});