我有一个带有某些值的属性网格。当我选择行时,它变得可见。我可以立即显示所有行吗?预先感谢。
这里是网格
var propGrid = new Ext.grid.PropertyGrid({
url: 'fill-template-form-panel-id',
id: 'propGrid',
autoFill: true,
autoHeight: true,
width: '100%',
disableSelection : true,
source: {
"name": "Vasya",
"surname": "Pupkin"
},
style: 'margin:0 auto;margin-top:10px;'
});