试图找出隐藏哪些列,哪些列不隐藏。
假设我的表有列
现在我取消隐藏动物专栏。
我的代码如下
var columnmodel = new Ext.grid.ColumnModel({
columns:[
{header: "Name", id: "id", , sortable: true, dataIndex: 'Name'},
{header: "Place", id: "entityType", sortable: true, dataIndex: 'Place'},
{header: "Animal", id: "title", sortable: true, dataIndex: 'title'},
{header: "Thing", id: "title", sortable: true, dataIndex: 'title'},
],
listeners: {
{@link #hiddenchange}: function(cm, colIndex, hidden) {
saveConfig(colIndex, hidden);
}
}
});
现在我正在运行时遇到以下错误
未捕获的SyntaxError:意外的令牌{
以上错误在{@link #hiddenchange}行中,所以有人可以帮我解释为什么我会遇到这个错误。
答案 0 :(得分:0)
尝试使用"{@link #hiddenchange}"
代替{@link #hiddenchange}