Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

When we are using jqxtooltip with the page having scrollbar, The jqxtooltip is misbehaving. Coul you please help on this?

  • 1 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 the-edmeister

more options

$( ".paneinput.jqxscrollbar" ).on("valuechanged", function (event) { var currValue = event.currentValue; var preValue = event.previousValue;


var a=$( ".paneinput .jqxscrollbar" ) var popups=$('.jqxtooltip');

for(var i=0;i
$( ".paneinput.jqxscrollbar" ).on("valuechanged", function (event) { var currValue = event.currentValue; var preValue = event.previousValue; var a=$( ".paneinput .jqxscrollbar" ) var popups=$('.jqxtooltip'); for(var i=0;i<popups.length;i++) { var popupdisplay=$(popups[i]).css('display'); if ((popupdisplay=="block")) { var gridid=$(popups[i]).attr('ID'); var x=$("#"+gridid).offset(); var y=x; y=x.top+(preValue-currValue)+"px"; var popupid="#"+gridid; $(popupid).css('top',y); var z=parseInt(y); if (z<93) { $(popupid).css('z-index',1); } else if (z>600) { $(popupid).css('z-index',1); } else if ((z>93)||(z<650)) { $(popupid).css('z-index',99999); } } var texts=$('.text'); for(var i=0;i<texts.length;i++) { var textid=$(texts[i]).attr('ID'); var textObj = $('#'+textid) textObj.jqxTooltip('close'); textObj.jqxTooltip('open'); var top = textObj.offset().top if((top>1892)||(top<1)) { textObj.jqxTooltip('close'); } } } }); The above code we are using

所有回复 (1)

more options

This forum is intended for user support, not for web development issues. Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The contributors over there are more knowledgeable about web page development issues with Firefox. http://forums.mozillazine.org/viewforum.php?f=25 You'll need to register and login to be able to post in that forum.