easyui combobox 取值赋值问题

根据文档

//多选赋值
$('#cc').combobox('setValues', ['001','002']);
//单选赋值
$('#cc').combobox('setValue', '001');
//取值方法在combo分类中。
//The methods extend from combo, below is the added or overridden methods for combobox.
//多选取值
$('#cc').combobox('getValues');
//单选取值
$('#cc').combobox('getValue');

只这样回填赋值后,在用getValues时会获取不到值,查看文档发现有value属性,The default value.

$('#cc').combobox({
    valueField:'id',
    textField:'text',
    multiple:true,  //多选
    editable : true,  //是否可编辑
    panelHeight:'auto',
    value : $('#tempCc').val().split(',')//设置默认值
});
//tempCc为后台传过来的字符串,以“,”分隔

这样就可以回填后正常取值了。

你可能感兴趣的:(javascript,easyui)