|
<t:dgCol title="主讲人" field="teacherId" width="80" sortable="false" formatterjs="teacherIdFmt"></t:dgCol>
//教师名字格式化
function teacherIdFmt(value, row, index) {
//替换所有的“,”
value = value.replace(new RegExp(",","gm"),"");
//此处获取教师集合, option的value值为id, 显示值为教师名称 , 并根据value值等于传递的value值获取select的默认值
var text = "<select name='teacherId' onchange='teacherChange(this)' style='width: 75px' class='easyui-combobox' data-options='multiple:true,multiline:true'>";
text += "<option></option>";
for(var i=0; i<teacherList.length; i++) {
if(value == teacherList.id) {
text += "<option value='"+ teacherList.id +"' selected>"+ teacherList.name +"</option>";
} else {
text += "<option value='"+ teacherList.id +"'>"+ teacherList.name +"</option>";
}
}
text += "</select>";
return text;
}
问题: 为什么此处拼接的easyui多选框不能生效?
新人发帖, 有什么不周到之处, 各位大神多多包涵。
|
|