-
Beta Was this translation helpful? Give feedback.
Answered by
MarGraz
Mar 29, 2024
Replies: 1 comment 5 replies
-
We already discussed something similar here, but for @douwinga do you have any ideas on how I can implement this? 🤔💡 Thank you |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found the problem. I made a simple but effective mistake 🐔😅
I used the incorrect
name
attribute value for everyinput
field. As a result, when the form was submitted andUpdateAsync
was called, thePrefix
value was incorrect, causing data binding to fail.Here's an example of the correct
name
value:I also forgot to add an hidden
input
field for theContentType
property. This property is non nullable and must be included in the model, otherwise the update will fail.Thank you