This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

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

  • 1 antwoord
  • 1 het hierdie probleem
  • 1 view
  • Laaste antwoord deur 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

All Replies (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.