3
jqGrid使用下面的colmodel在列中顯示圖像。圖像以二進制列存儲在數據庫中。 如何讓用戶上傳圖片到現有的和新的行?如何將圖像上傳到jqgrid列
colModel: [{"name":"ProductId","edittype":"custom","editoptions":{"custom_element":function(value, options) { return combobox_element(value, options)}
,"custom_value":combobox_value
},"editable":true,"width":112,"fixed":true,"hidden":false},
{"name":"Image","formatter":function(cell, options,row) {
return "<img src='Grid/GetImage?image=" + row[0] + "'/>"
}
}]
public FileContentResult GetImage(string image) {
byte[] image = ....
return File(image, "image/jpg");
}
@Oleg你能回答這個問題嗎? – Tareq
@Tareq:我使用DataProxy取得了一些進展。在其他問題中,我還將測試用例發送給包含這個的Oleg。未解決的isses是:圖像不立即刷新,如果http響應返回錯誤,則不能讀取錯誤消息,不支持內聯編輯。 – Andrus