How to use SearchHandler
with data binding from ViewModel?
#13221
Unanswered
FroggieFrog
asked this question in
Q&A
Replies: 1 comment
-
// you may have to create a bindable property or you shall have a no property found error public static readonly BindableProperty ItemsToSearchProperty; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a custom implementation (according to the docs) of
SearchHandler
and want to use it on different pages.The app follows MVVM and all pages have a ViewModel with the data to search through.
How can I bind an
ObservableCollection<Item>
from a ViewModel to mySearchHandler
?This would avoid the loading of all necessary data again.
some sample code:
Beta Was this translation helpful? Give feedback.
All reactions