FluentDataGrid, use byte[] with PropertyColumn #2440
Answered
by
vnbaaij
andrewwang1tw
asked this question in
Q&A
-
Does FluentDataGrid support img from byte[] ? Content1 is the byte[] retrieved from database. Below code only shows "System.Byte[]" on FluentDataGrid , not the really content
The result is as attached file |
Beta Was this translation helpful? Give feedback.
Answered by
vnbaaij
Jul 23, 2024
Replies: 1 comment 6 replies
-
I'm guessing you need to do something with encoding/decoding. Can you display the images in plain html like in an unordered list? |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What else would you expect that to display? The property column uses
ToString()
method internally and for this array that will return the type/. You will need to do some work there to get it to display the value.