FeedViewState is always null with C# markup #15089
-
I tried to follow some examples with different data, but FeedViewState is always null, so I can't do anything |
Beta Was this translation helpful? Give feedback.
Answered by
dr1rrb
Jan 17, 2024
Replies: 1 comment 1 reply
-
Hey @LuisAlfredo92, this is because the In your sample you have to write Closing the issue, feel free to re-open it if you still have an issue :) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
LuisAlfredo92
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @LuisAlfredo92, this is because the
feedViewState
is provided only to write "strongly typed" binding, it will always benull
(cf. Warning tip here)In your sample you have to write
.ItemsSource(() => feedViewState.Data)
Closing the issue, feel free to re-open it if you still have an issue :)