感谢您提供这个很棒的插件。
我正在使用 1.5 版(主分支)。当我将鼠标放在“添加”按钮上时,会显示工具提示并阻止我单击它。我有与 1.4 版相同的代码,并且只更新到主分支。
这是发生的事情的记录:http: //g.recordit.co/LKo1dGpmEs.gif
我是否必须以不同的方式设置网格,或者这是一个已知的错误?
感谢您提供这个很棒的插件。
我正在使用 1.5 版(主分支)。当我将鼠标放在“添加”按钮上时,会显示工具提示并阻止我单击它。我有与 1.4 版相同的代码,并且只更新到主分支。
这是发生的事情的记录:http: //g.recordit.co/LKo1dGpmEs.gif
我是否必须以不同的方式设置网格,或者这是一个已知的错误?
Thanks to mpf82, I went back and isolated the CSS line which was conflicting. I am using the foundation
library, and it has a line for the body
tag which sets position: relative;
This was causing w2ui to misplace the tooltip. I added the following line to reset the position
to the initial setting, and that worked fine.
body {
position: initial;
}