Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
143560 | Mar 26,2019 07:53 PM UTC | Apr 5,2019 05:57 AM UTC | ASP.NET Core - EJ 2 | 3 |
![]() |
Tags: DataGrid |
string base64String = Convert.ToBase64String(bytes, 0, bytes.Length); // Convert the bytes to base64 string |
function queryCellInfo(args) { // Grid queyCellInfo event
if (args.column.field == "Image") {
var image = new Image();
image.src = "data:image/png;base64," + args.data.Image; // base64 string
args.cell.appendChild(image); // Appended the image to particular cell
}
} |
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.