文章列表
String s1 = new StringBuffer().append("你好").append("世界").toString();
System.out.println(s1.intern()==s1);//true
String s3 = new StringBuffer().append("你好").append("世界").toString();
System.out.println(s3.intern()==s3);//false
System.out.prin ...
设置表格中某一列的宽度自适应,填充grid剩余的宽度:
cm中要设置该列的id:
var cm = new Ext.grid.ColumnModel([{
header : '编号',
dataIndex : 'id'
}, {
header : '名称',
dataIndex : 'name'
}, {
id : 'description',
header : '描述',
dataIndex : 'descn'
}]);
然后在grid的初始配置中加上:
autoExpan ...