本文目录一览:
- 1、extjs 中bbar中数据太多,屏幕显示不全需要有在bbar设置滚动条,求大神指导....
- 2、Extjs怎么在panel面板里面设置滚动条
- 3、Extjs5里怎么设置panel的滚动条样式?
- 4、ExtJS 官网API的滚动条样式怎么弄?
extjs 中bbar中数据太多,屏幕显示不全需要有在bbar设置滚动条,求大神指导....
换行显示吧,滚动条的即使弄上也不好看,不好操作的,呵呵。
弄成两行,这样干:
自定义一个bbar,例如:
var mybbar = [{
text: '刷新'
},{
text: '新增'
}];
再定一个bbar,分页的工具条bar(普通的bar也行),例如:
var otherbar=new Ext.PagingToolbar({
store:store,
pageSize:pageSize,
displayInfo:true,
displayMsg:"当前显示从{0}条到{1}条,共{2}条",
items : [{
text: '修改'
},"-",{
text: '删除'
}]
});
然后在grid中这样:
var grid=new Ext.grid.GridPanel({
......
bbar: mybbar , //第一个bar
listeners : {
render : function(data){
otherbar.render(grid.bbar); //另一个bar
}
}
你试试~~~
Extjs怎么在panel面板里面设置滚动条
设置scrollable:true.
如果内容超过panel的宽度、高度就会出现滚动条
scrollable : Boolean/String/Object
Configuration options to make this Component scrollable. Acceptable values are:
true to enable auto scrolling.
false (or null) to disable scrolling - this is the default.
x or horizontal to enable horizontal scrolling only
y or vertical to enable vertical scrolling only
Also accepts a configuration object for a Ext.scroll.Scroller if if advanced configuration is needed.
The getter for this config returns the Scroller instance. You can use the Scroller API to read or manipulate the scroll position:
Extjs5里怎么设置panel的滚动条样式?
最新版本是Extjs5.0.1,我们可以在官方网站进行下载。(这里不得不提一句,Extjs5到目前为止还没有免费的授权,所以下载到的版本是试用版。)
下载到的压缩包解压以后,你会看到一大堆的文件夹和文件,我们该如何使用Extjs5呢?
之前看到过别人说的通过Sencha CMD创建Extjs5项目,但个人觉得那种方式并不适合我们目前的开发模式。我说做ASP.NET的,需要在ASP.NET MVC或WebForm中使用Extjs,所以绝对不上简单的通过Sencha CMD 生成Extjs5项目那么简单。
ExtJS 官网API的滚动条样式怎么弄?
确实,我也挺喜欢的。我花了很长时间给弄下来了,发现到了火狐上面还是原来的滚动条