赞
踩
源码如下:
$("#tfvForm").combogrid({
panelWidth: 205,
idField: 'id', //ID字段
sortName: 'id',
sortOrder: 'asc',
textField: 'dictionaryValueName',//显示的字段
editable: false,
mode: 'remote',
required: true,
url: tfdURL + '!dataGrid.action',
queryParams:{
fieldId: row.templateFieldId
},
columns:[[{
field:'id',
hidden:true,
width:40
}]],
onSelect:function(index,row){
f.find('#tdkForm').val(row.dictionaryKey);
f.find('#tdvForm').val(row.dictionaryValueName);
},
//设置默认值代码
onLoadSuccess:function(){
$("#afvForm").combogrid("setValue",row.apiDictName);
}
});
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。