EXT 的GridPanel中有一CheckBox列,现在要根据一绑定的值,设置CheckBox是否禁用
1个回答
展开全部
从后台返回数据的时候,比如返回{....,'available':true,.......}。
前台checkbox字段如下设置:
{header:'是否禁用,dataIndex:'available',width:100,
renderer:function(value, cellmeta, record, rowIndex, columnIndex, store)
{
if(value=="true") //返回的'available'值
{
var str ="<input type='checkbox' disable='false' />";//不禁用
return str;
}else
{
var str ="<input type='checkbox' disable='true' />";//禁用 return str;
}
}
}
前台checkbox字段如下设置:
{header:'是否禁用,dataIndex:'available',width:100,
renderer:function(value, cellmeta, record, rowIndex, columnIndex, store)
{
if(value=="true") //返回的'available'值
{
var str ="<input type='checkbox' disable='false' />";//不禁用
return str;
}else
{
var str ="<input type='checkbox' disable='true' />";//禁用 return str;
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询