I have a custom edit pop-up. I'm trying to add a hidden byte array, but it's not working. They byte array will be dynamic but I can't even get a hard coded version to work properly.
If I put the following line in the custom edit cshtml file,
The pop-up renders it as:
When I try it in a regular MVC page everything works as expected. (Also, this is the only part of the model that doesn't render correctly in the custom edit pop-up.)
If I put the following line in the custom edit cshtml file,
<
input
id
=
"RowVersion"
name
=
"RowVersion"
type
=
"hidden"
value
=
"AAAAAAAAZZM="
>
<
input
id
=
"RowVersion"
name
=
"RowVersion"
type
=
"hidden"
value
=
"[object Object]"
data-bind
=
"value:RowVersion"
>