更改 ExtJ 中的滚动条
我正在使用 ExtJs 并尝试更改默认滚动条的外观(对于网格面板)。
我尝试使用 jScrollPane,但它根本无法与 ExtJs 一起使用。
有没有办法改变 ExtJS 中滚动条的默认外观。我不会实现类似于 jScrollPane 的外观,
谢谢!
I'm using ExtJs and trying to change look of the default scroll-bars (for Grid Panel).
I tried using jScrollPane, but it's not working at all with ExtJs.
Is there any way to change look of default look of scroll-bars in ExtJS. I wont to achieve look similar to jScrollPane
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在寻找在 extjs 4.0.7 网格上实现 jScrollPane 时偶然发现了这篇文章,
我找不到任何其他合适的东西,现在我有这种可怕的 hacky 方法:
将其应用于您的网格配置
scroll: false
并将其添加到网格的 viewModel 中,
以便关闭内部滚动。
将此函数应用于扩展 Ext.grid.Panel 的网格
一般的想法是,布局被调用太多次而无法了解内部发生的情况,因此我们将检查网格视图的状况。如果网格视图与其容器的高度不同,则需要重新应用 jScrollPane (并删除旧的)。内部发生了一些事情,这意味着 jScrollPane 变得孤立,因此我们删除了孤立的。
添加和删除商店记录时,我还会调用
reapplyScrollbar
。当然,虽然这有效,但非常令人讨厌。最终我将通过更改渲染的标记来更深入地做到这一点。
I stumbled across this post while looking to implement jScrollPane on the extjs 4.0.7 grid
I couldn't find anything else suitable, and I now have this terrible hacky way of doing it:
Apply this to your grid config
scroll: false
And this to your grid's viewModel
so that the internal scrolling is switched off.
Apply this function to your grid that extends Ext.grid.Panel
The general idea is that layout is called way too many times to know what's going on internally, so we'll check the condition of the grid view. If the grid view has a different height to its container then the jScrollPane needs re-applying (and the old one removing). Internally something happens that means the
jScrollPane
s get orphaned, so we remove orphaned ones.When store records are added and removed I'm also calling
reapplyScrollbar
.Naturally although this works it is very nasty. Eventually I'll do it somewhere deeper by changing the rendered markup.
我设法将 jscrollpane 与 extJs GridPanel 一起使用。
在网格面板的渲染侦听器中我放置
I manage to use jscrollpane with extJs GridPanel.
In render listener of Grid Panel I put