Prohledat stránky podpory

Vyhněte se podvodům. Za účelem poskytnutí podpory vás nikdy nežádáme, abyste zavolali nebo poslali SMS na nějaké telefonní číslo nebo abyste sdělili své osobní údaje. Jakékoliv podezřelé chování nám prosím nahlaste pomocí odkazu „Nahlásit zneužití“.

Zjistit více

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

  • 1 odpověď
  • 1 má tento problém
  • 3 zobrazení
  • Poslední odpověď od 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

Všechny odpovědi (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.