在Qtip中显示jScrollPane
我将 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});
}
但我仍然没有任何运气。
我认为不起作用的原因是:
- 我认为两个脚本发生冲突,这意味着我需要在 onRender 函数内使用 jquery noconflict 。
- 滚动条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:
- I think the two script got conflict,which means I need to use jquery noconflict inside the onRender function.
- the scrollbar div is in the scrollpanel.html not on the index.html.
If I usethis.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)