我在 Ext JS 文档中看到了一个特性 - http://dev.sencha.com/deploy/ext-4.0.1/examples/grid/locking-grid.html。我们可以通过根据文档设置“锁定”选项来锁定列,但是当我在 Netzke Grid 中这样做时,网格消失了。有没有什么具体的方法可以实现这一点。下面给出了示例代码,
def configure(c)
super
c.model = "Product"
c.title = "Product List"
c.columns = [
{
:name => :name,
:text => "Name",
:read_only => true,
:locked => true
},
{
:name => :price,
:text => "Price"
},
{
:name => :date,
:text => "Date"
}
]
end