已解决
$("<input />")
.width("100%")
.appendTo(args.cell.container().empty())
.wijcombobox({
data: { label: { bind: "txt" }, value: { bind: "val"} },
autoComplete: false,
autoFilter: false,
isEditable: true,
//select:function(e,data){alert("选择的值是:"+data.value)},
//changed:function(){alert("changed")},
//textChanged:function(){alert("textChanged")},
dataSource: t1
}); |