ExtJS 5:电子表格拖动 select 显示单元格工具提示
ExtJS 5: spreadsheet drag select with shown cell tooltip
我有一个简单的电子表格网格 (example),每个单元格都有一个工具提示...我正在使用 meta.tdAttr
为每个单元格添加工具提示。在 Chrome 中,在显示工具提示后,当我开始从左上角的单元格沿对角线拖动时,工具提示会妨碍并最终选中其文本。我不确定这是一个错误还是只是浏览器的行为(因为 IE 和 FF 不会产生这个问题,但在选择时会产生一点延迟)。无论哪种方式,这绝对是一个非常烦人的问题......它在这个例子中并不像在我的实际应用程序中那样普遍,但希望你明白了。
理想情况下,我会监听 mousedown 事件,并禁用工具提示的显示,因为 mousedown 表示即将进行选择。然后当 mouseup 被触发时,我可以在悬停时显示工具提示。
我看到了 v4.2 及更早版本的几个示例,但它们不再适用于 v5.0+。我开始使用 this example to make a cell tooltip, but it's a little difficult if I don't know the column/row index. This led me to this example,它使用视图的 uievent
来存储悬停的行和列索引。然而,这似乎并没有在 v4.2.1+ 中的每个单元格悬停时得到更新。在 v4.2.0 中,它运行得非常好。
有没有一种方法可以在鼠标悬停在单元格上时创建工具提示,并且还可以访问该单元格的行和列索引?
Ext.application({
name: 'Fiddle',
launch: function() {
Ext.create('Ext.data.Store', {
storeId: 'simpsonsStore',
fields: ['name', 'email', 'phone'],
data: {
'items': [{
'name': 'Lisa',
"email": "lisa@simpsons.com",
"phone": "555-111-1224"
}, {
'name': 'Bart',
"email": "bart@simpsons.com",
"phone": "555-222-1234"
}, {
'name': 'Homer',
"email": "homer@simpsons.com",
"phone": "555-222-1244"
}, {
'name': 'Marge',
"email": "marge@simpsons.com",
"phone": "555-222-1254"
}, {
'name': 'Lisa',
"email": "lisa@simpsons.com",
"phone": "555-111-1224"
}, {
'name': 'Bart',
"email": "bart@simpsons.com",
"phone": "555-222-1234"
}, {
'name': 'Homer',
"email": "homer@simpsons.com",
"phone": "555-222-1244"
}, {
'name': 'Marge',
"email": "marge@simpsons.com",
"phone": "555-222-1254"
}, {
'name': 'Lisa',
"email": "lisa@simpsons.com",
"phone": "555-111-1224"
}, {
'name': 'Bart',
"email": "bart@simpsons.com",
"phone": "555-222-1234"
}, {
'name': 'Homer',
"email": "homer@simpsons.com",
"phone": "555-222-1244"
}, {
'name': 'Marge',
"email": "marge@simpsons.com",
"phone": "555-222-1254"
}, {
'name': 'Lisa',
"email": "lisa@simpsons.com",
"phone": "555-111-1224"
}, {
'name': 'Bart',
"email": "bart@simpsons.com",
"phone": "555-222-1234"
}, {
'name': 'Homer',
"email": "homer@simpsons.com",
"phone": "555-222-1244"
}, {
'name': 'Marge',
"email": "marge@simpsons.com",
"phone": "555-222-1254"
}, {
'name': 'Lisa',
"email": "lisa@simpsons.com",
"phone": "555-111-1224"
}, {
'name': 'Bart',
"email": "bart@simpsons.com",
"phone": "555-222-1234"
}, {
'name': 'Homer',
"email": "homer@simpsons.com",
"phone": "555-222-1244"
}, {
'name': 'Marge',
"email": "marge@simpsons.com",
"phone": "555-222-1254"
}]
},
proxy: {
type: 'memory',
reader: {
type: 'json',
rootProperty: 'items'
}
}
});
function columnRenderer(value, meta) {
meta.tdAttr = 'data-qtip="This is<br />some really<br />long tooltip, so I hope you do not mind reading it"';
return value;
}
Ext.create('Ext.grid.Panel', {
title: 'Simpsons',
store: Ext.data.StoreManager.lookup('simpsonsStore'),
columns: [{
text: 'Name',
dataIndex: 'name',
renderer: columnRenderer
}, {
text: 'Email',
dataIndex: 'email',
flex: 1,
renderer: columnRenderer
}, {
text: 'Phone',
dataIndex: 'phone',
renderer: columnRenderer
}],
selModel: {
type: 'spreadsheet'
},
height: 800,
width: 800,
renderTo: Ext.getBody()
});
}
});
我接受了您的 fiddle 并针对工具提示对其进行了一些调整。工具提示文本的选择应该消失了。
https://fiddle.sencha.com/#fiddle/tkc
var view = grid.getView();
var tip = Ext.create('Ext.tip.ToolTip', {
target: view.el,
delegate:'td.x-grid-cell',// important for tooltip to be shown on each cell
trackMouse: true,
renderTo: Ext.getBody(),
listeners: {
// Change content dynamically depending on which element triggered the show.
beforeshow: function updateTipBody(tip) {
//console.log(view.getRecord(tip.triggerElement));
var cellDOMRef = tip.triggerElement;
var rowRef = view.getRecord(tip.triggerElement);
var rowData = rowRef.data;
var cellValue = cellDOMRef.firstElementChild.innerHTML;
console.log(cellDOMRef,rowRef,rowData);
tip.update('Tooltip '+cellValue);
}
}
});
我在这里做的主要事情是创建一个 Ext 工具提示并将其挂接到电子表格网格的每个单元格。显示工具提示后,您将获得对该行的引用,以及您可以访问单元格 content/value 的单元格的 DOM,就像我对 cellValue[ 所做的那样=27=] beforeshow 函数中的变量。希望这能解决您的问题。
编辑:
为了能够获取列和行索引,您可以使用之前应用的渲染器并使用 tdAttr 隐藏每个单元格的信息。这不是最好的方法,但它确实有效。
function columnRenderer(value, meta) {
meta.tdAttr = 'columnIndex="'+meta.columnIndex+'" rowIndex="'+meta.rowIndex+'"';
return value;
}
应该更新之前的 fiddle。
我有一个简单的电子表格网格 (example),每个单元格都有一个工具提示...我正在使用 meta.tdAttr
为每个单元格添加工具提示。在 Chrome 中,在显示工具提示后,当我开始从左上角的单元格沿对角线拖动时,工具提示会妨碍并最终选中其文本。我不确定这是一个错误还是只是浏览器的行为(因为 IE 和 FF 不会产生这个问题,但在选择时会产生一点延迟)。无论哪种方式,这绝对是一个非常烦人的问题......它在这个例子中并不像在我的实际应用程序中那样普遍,但希望你明白了。
理想情况下,我会监听 mousedown 事件,并禁用工具提示的显示,因为 mousedown 表示即将进行选择。然后当 mouseup 被触发时,我可以在悬停时显示工具提示。
我看到了 v4.2 及更早版本的几个示例,但它们不再适用于 v5.0+。我开始使用 this example to make a cell tooltip, but it's a little difficult if I don't know the column/row index. This led me to this example,它使用视图的 uievent
来存储悬停的行和列索引。然而,这似乎并没有在 v4.2.1+ 中的每个单元格悬停时得到更新。在 v4.2.0 中,它运行得非常好。
有没有一种方法可以在鼠标悬停在单元格上时创建工具提示,并且还可以访问该单元格的行和列索引?
Ext.application({
name: 'Fiddle',
launch: function() {
Ext.create('Ext.data.Store', {
storeId: 'simpsonsStore',
fields: ['name', 'email', 'phone'],
data: {
'items': [{
'name': 'Lisa',
"email": "lisa@simpsons.com",
"phone": "555-111-1224"
}, {
'name': 'Bart',
"email": "bart@simpsons.com",
"phone": "555-222-1234"
}, {
'name': 'Homer',
"email": "homer@simpsons.com",
"phone": "555-222-1244"
}, {
'name': 'Marge',
"email": "marge@simpsons.com",
"phone": "555-222-1254"
}, {
'name': 'Lisa',
"email": "lisa@simpsons.com",
"phone": "555-111-1224"
}, {
'name': 'Bart',
"email": "bart@simpsons.com",
"phone": "555-222-1234"
}, {
'name': 'Homer',
"email": "homer@simpsons.com",
"phone": "555-222-1244"
}, {
'name': 'Marge',
"email": "marge@simpsons.com",
"phone": "555-222-1254"
}, {
'name': 'Lisa',
"email": "lisa@simpsons.com",
"phone": "555-111-1224"
}, {
'name': 'Bart',
"email": "bart@simpsons.com",
"phone": "555-222-1234"
}, {
'name': 'Homer',
"email": "homer@simpsons.com",
"phone": "555-222-1244"
}, {
'name': 'Marge',
"email": "marge@simpsons.com",
"phone": "555-222-1254"
}, {
'name': 'Lisa',
"email": "lisa@simpsons.com",
"phone": "555-111-1224"
}, {
'name': 'Bart',
"email": "bart@simpsons.com",
"phone": "555-222-1234"
}, {
'name': 'Homer',
"email": "homer@simpsons.com",
"phone": "555-222-1244"
}, {
'name': 'Marge',
"email": "marge@simpsons.com",
"phone": "555-222-1254"
}, {
'name': 'Lisa',
"email": "lisa@simpsons.com",
"phone": "555-111-1224"
}, {
'name': 'Bart',
"email": "bart@simpsons.com",
"phone": "555-222-1234"
}, {
'name': 'Homer',
"email": "homer@simpsons.com",
"phone": "555-222-1244"
}, {
'name': 'Marge',
"email": "marge@simpsons.com",
"phone": "555-222-1254"
}]
},
proxy: {
type: 'memory',
reader: {
type: 'json',
rootProperty: 'items'
}
}
});
function columnRenderer(value, meta) {
meta.tdAttr = 'data-qtip="This is<br />some really<br />long tooltip, so I hope you do not mind reading it"';
return value;
}
Ext.create('Ext.grid.Panel', {
title: 'Simpsons',
store: Ext.data.StoreManager.lookup('simpsonsStore'),
columns: [{
text: 'Name',
dataIndex: 'name',
renderer: columnRenderer
}, {
text: 'Email',
dataIndex: 'email',
flex: 1,
renderer: columnRenderer
}, {
text: 'Phone',
dataIndex: 'phone',
renderer: columnRenderer
}],
selModel: {
type: 'spreadsheet'
},
height: 800,
width: 800,
renderTo: Ext.getBody()
});
}
});
我接受了您的 fiddle 并针对工具提示对其进行了一些调整。工具提示文本的选择应该消失了。
https://fiddle.sencha.com/#fiddle/tkc
var view = grid.getView();
var tip = Ext.create('Ext.tip.ToolTip', {
target: view.el,
delegate:'td.x-grid-cell',// important for tooltip to be shown on each cell
trackMouse: true,
renderTo: Ext.getBody(),
listeners: {
// Change content dynamically depending on which element triggered the show.
beforeshow: function updateTipBody(tip) {
//console.log(view.getRecord(tip.triggerElement));
var cellDOMRef = tip.triggerElement;
var rowRef = view.getRecord(tip.triggerElement);
var rowData = rowRef.data;
var cellValue = cellDOMRef.firstElementChild.innerHTML;
console.log(cellDOMRef,rowRef,rowData);
tip.update('Tooltip '+cellValue);
}
}
});
我在这里做的主要事情是创建一个 Ext 工具提示并将其挂接到电子表格网格的每个单元格。显示工具提示后,您将获得对该行的引用,以及您可以访问单元格 content/value 的单元格的 DOM,就像我对 cellValue[ 所做的那样=27=] beforeshow 函数中的变量。希望这能解决您的问题。
编辑:
为了能够获取列和行索引,您可以使用之前应用的渲染器并使用 tdAttr 隐藏每个单元格的信息。这不是最好的方法,但它确实有效。
function columnRenderer(value, meta) {
meta.tdAttr = 'columnIndex="'+meta.columnIndex+'" rowIndex="'+meta.rowIndex+'"';
return value;
}
应该更新之前的 fiddle。