在Qtip中显示jScrollPane

发布于 2024-07-23 10:44:14 字数 1164 浏览 8 评论 0原文

我将 Jscrollpane 用于我的新项目。 这在页面上效果很好。

该页面工作正常,但是当它在 qtip 内调用时,自定义的 酒吧消失。

查看自定义滚动条 81.171.199.24/qtip/scrollpanel.html

查看qtip示例(点击snowy Owl 链接): 81.171.199.24/qtip/index.html

qtip 的开发人员建议我应该将滚动脚本包含在您的 qTip页面,并在onRender回调中调用jScrollPanel方法 否则你的工具提示将无法工作,因为它只是检索 HTML 从页面上看,也不解析上面的JS。

所以我尝试将代码放入 onRender 函数中,就像

onRender: function(){
   $Q('#pop-panel').jScrollPane({scrollbarWidth:15,scrollbarMargin:0});
}

我也尝试使用

onRender: function(){
   this.elements.content.jScrollPane({scrollbarWidth:15, scrollbarMargin:0});
}

但我仍然没有任何运气。

我认为不起作用的原因是:

  1. 我认为两个脚本发生冲突,这意味着我需要在 onRender 函数内使用 jquery noconflict 。
  2. 滚动条div位于scrollpanel.html中而不是index.html中。 如果我使用 this.elements.content.jScrollPane.... ,这是否只影响“#report_main_content a[rel]”内的元素。

请给一些建议,非常感谢您的帮助。

塔尼娅

I use Jscrollpane for my new project. which works great on the page.

The page works fine but when it is called inside the qtip, the customized
bar disappears.

See the customized scroll bar 81.171.199.24/qtip/scrollpanel.html

See qtip example (click snowy Owl link): 81.171.199.24/qtip/index.html

The developer from qtip suggest I should include the scroll script on your
qTip page, and call the jScrollPanel method within the onRender callback of
your tooltip otherwise won't work since it's simply retrieving the HTML
from the page, not parsing the JS on it too.

So I tried to put the code in the onRender function like

onRender: function(){
   $Q('#pop-panel').jScrollPane({scrollbarWidth:15,scrollbarMargin:0});
}

I also tried to use

onRender: function(){
   this.elements.content.jScrollPane({scrollbarWidth:15, scrollbarMargin:0});
}

But I still can't get any luck.

The reason I think is not working are:

  1. I think the two script got conflict,which means I need to use jquery noconflict inside the onRender function.
  2. the scrollbar div is in the scrollpanel.html not on the index.html.
    If I use this.elements.content.jScrollPane.... , should this only affect the element inside "#report_main_content a[rel]".

Please give some suggestions, thank you so much for the help.

tanya

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我早已燃尽 2024-07-30 10:44:14
api: {
    onRender: function(){
        alert("here");
    }
}
api: {
    onRender: function(){
        alert("here");
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文