- 注册时间
- 2012-6-20
- 最后登录
- 2014-4-24
- 阅读权限
- 10
- 积分
- 254
- 精华
- 0
- 帖子
- 63
|
http://www.miniui.com/demo/#src=listbox/moveitems.html
扩展这个示例
我想在listbox2 中加一个 只读和读写的单选框
listbox2.on("drawcell", function (e) {
var record = e.record,
column = e.column,
field = e.field,
value = e.value;
if (column.field == "ACTIVE") {
e.cellHtml = "<input name='readtype"+ record.BIT +"' type='radio' value='1' checked>只读<input name='readtype"+ record.BIT +"'
type='radio' value='2'>读写";
}
});我用 这个方法的,每次加一个新项到listbox2中,单选按钮都会重新加载一次,所以,如果之前如果选择了读写,也都会被改成只读,那我要怎么做才能保留原本选择的记录呢?
|
|