我正在研究 wijmo 网格,我想在网格中添加选择框,其数据来自 JSON。
这是我尝试过的代码,但它没有在框中显示选项数据。
<script type="text/javascript">
$.ajax({
url: "DeviceType",
type: "GET",
dataType: "json",
contentType : "application/json",
success: function (responce) {
if (responce.listResponse.items.length > 0) {
$.each(responce.listResponse.items, function (i, entity) {
$('#devicetype').append(
$('<select/>', {
'id': 'deviceType' + entity.paramCode,
'type': 'select',
'name': 'deviceType',
'value': entity.paramValue
}),
$('<options />', {
'for': 'deviceType' + entity.paramValue,
'text': entity.paramValue
}).click(function() {
alert(entity.paramCode);
})
);
});
}
}
});
</script>
<body>
<div id="devicetype" name="deviceType" ></div>
</body>