이렇게하려면 Ext.tip.QuickTip
을 사용하는 것이 좋습니다.
Ext.create('Ext.tip.QuickTip', {
id: 'myquicktip',
hideDelay: 2000,
header: false
});
Ext.create('Ext.panel.Panel',{
title: 'Panel',
layout: 'hbox',
height: 200,
width: 600,
items: [{
xtype: 'textfield',
id: 'field1',
}, {
xtype: 'textfield',
id: 'field2',
}, {
xtype: 'textfield',
id: 'field3',
listeners: {
change: function(){
var field1 = Ext.getCmp('field1'),
tip = Ext.getCmp('myquicktip');
field1.setValue('');
tip.update('field1 has been cleared');
tip.showBy(field1)
}
}
}
],
renderTo: Ext.getBody()
});
여기에 바이올린 링크는 너무 : https://fiddle.sencha.com/#fiddle/9pd
당신이 jQuery를 사용할 수 있습니까? 그것은 쉬울 것입니다. – VPK
을 사용하면 jQuery를 사용하여 1 위 자리에서 ExtJS를 사용하는 목적을 무력화 할 수 있습니다. – sidrocks