- 浏览: 11245 次
- 性别:
- 来自: 苏州
最新评论
文章列表
DWR问题解决
2008-02-26 11:56:39| 分类: 框架相关 |字号 订阅
dwr遇到这种错误:
org.directwebremoting.util.CommonsLoggingOutput error
严重: A request has been denied as a potential CSRF attack.
在参照dwr的官方网站时,如果在后台出现如下的提示信息:A request has been denied as a potential CSRF attack
则,需要在web.xml中的如下配置修改一下
xml 代码
<servlet&g ...
Ext修改Grid行高
- 博客分类:
- Ext修改Grid行高
就在你需要修改行高的页面上重写它的样式就可以了
第一种查到的方法:
可以在页面中重载x-grid3-row样式:
<style type="text/css">
.x-grid3-row{
height:80px;
}
</style>
这样,对这个页面的所有GRID都有默认的行高了。
第二中查到的方案:
<style type="text/css">
.x-grid3-row td,.x-grid3-summary-row t ...
listeners : {
'expand' : function(combo) {
var blurField = function(el) {
el.blur();
}
blurField.defer(10,this,[combo.el]);
},
'collapse' : function(combo) {
var blurField = function(el) {
el.blur();
}
blurFie ...