gpt4 book ai didi

javascript - ExtJS 5 : spreadsheet drag select with shown cell tooltip

转载 作者:行者123 更新时间:2023-12-03 08:56:15 39 4
gpt4 key购买 nike

我有一个简单的电子表格网格 ( example ),每个单元格都有一个工具提示...我使用 meta.tdAttr 为每个单元格添加工具提示。在 Chrome 中,显示工具提示后,当我开始从左上角单元格对 Angular 拖动时,工具提示会妨碍并最终选择其文本。我不确定这是一个错误还是只是浏览器行为(因为 IE 和 FF 不会产生此问题,但在选择时会产生一点滞后)。不管怎样,这绝对是一个非常烦人的问题......它在这个例子中并不像在我的实际应用程序中那么普遍,但希望你明白了。

理想情况下,我会监听 mousedown 事件,并禁用工具提示的显示,因为 mousedown 表示即将发生选择。然后,当 mouseup 被触发时,我可以在悬停时显示工具提示。

我看到了 v4.2 及更早版本的几个示例,但它们不再适用于 v5.0+。我开始使用 this example制作单元格工具提示,但如果我不知道列/行索引,那就有点困难了。这导致我this example ,它使用 View 的 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 工具提示并将其挂接到电子表格网格的每个单元格上。显示工具提示后,您将获得对该行的引用,以及可以访问单元格内容/值的单元格 DOM 的引用,就像我在 beforeshow 函数中使用 cellValue 变量所做的那样。希望这能解决您的问题。

编辑:

为了能够获取列和行索引,您可以使用之前应用的渲染器,并使用 tdAttr 隐藏每个单元格的信息。这不是最好的方法,但它确实有效。

function columnRenderer(value, meta) {

meta.tdAttr = 'columnIndex="'+meta.columnIndex+'" rowIndex="'+meta.rowIndex+'"';
return value;
}

之前的 fiddle 应该更新。

关于javascript - ExtJS 5 : spreadsheet drag select with shown cell tooltip,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32487185/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com