我正在尝试使用下面的代码在运行时向combobox
添加提示,但它不起作用:
onStartReport: function (aButton) {
var lTip = Ext.getCmp('datasources');
lTip.setTooltip("Information on datasource");
}
我也试过这个,但是我收到了一个错误:
onStartReport: function (aButton) {
var tip = Ext.create('Ext.tip.ToolTip', {
target: 'datasources',
html: 'Information on datasource'
});
}
查看经典:
{
xtype: 'combo',
itemId: 'datasources',
name: 'datasources',
fieldLabel: 'Data sources',
displayField: 'description',
valueField: 'id',
queryMode: 'local',
value: 0,
forceSelection: true,
editable: false,
store: {
data: [
{id: 0, description: 'OnLine'},
{id: 1, description: 'History'}
],
fields: [
{name: 'id', type: 'int'},
{name: 'description', type: 'string'}
],
autoLoad: true
}
}
答案 0 :(得分:1)
这种方法应该没问题:
onStartReport: function (aButton) {
var tip = Ext.create('Ext.tip.ToolTip', {
target: 'datasources',
html: 'Information on datasource'
});
问题是您的组件确实没有id
,您添加的唯一配置是itemId
且它们不完全相同,请参阅文档。这也是Ext.getCmp('datasources')
无效的原因。
解决此问题的一种方法是,只需将itemId
更改为id
,即可找到引用。
如果您不想在组件中添加ID,并继续使用itemId,则可以使用以下代码:
onStartReport: function (aButton) {
var combo = Ext.ComponentQuery.query('#datasources')[0],
tip = Ext.create('Ext.tip.ToolTip', {
target: combo.el,
html: 'Information on datasource'
});
还有第三个选项是抓取组合框与调用onStartReport
方法的组件/控制器的关系。
我在这里添加了一个示例:https://fiddle.sencha.com/#view/editor&fiddle/2hap