我想在ExtJS按钮附近显示工具提示。 因为我正在创建一个工具提示对象,我正在尝试使用ShowAt方法。 ShowAt方法获取X,Y坐标。 当我试图获得按钮的绝对位置(使用top / let offset)时,我得到了错误的值。 获得ExtJS按钮绝对位置的最佳方法是什么?
谢谢,
答案 0 :(得分:0)
以下是工作示例:http://jsfiddle.net/LLGQ2/
<div id="buttonContainer" style="position:absolute; width:50px; height:30px; left:100px; top:100px;"></div>
Javascript代码:
Ext.create('Ext.button.Button',{
text: 'Ok',
renderTo: 'buttonContainer'
});
或者像这样:
Ext.create('Ext.button.Button',{
text: 'Ok',
renderTo: Ext.getBody(),
style: 'position:absolute; left:100px; top:100px;'
});