combo box with live filtering #903
Unanswered
Aswinputhoor
asked this question in
Q&A
Replies: 1 comment
-
Why dont you call the FilterItems() in the setter of the SearchText Property? |
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
-
I have a combo box with live filtering of data (filtering happens as user enters or clears data) implemented using Caliburn.micro. Code behind seems to be working fine, in debug mode values were there as expected. But the issue is UI is blank, there is no data at all.
Used following collection:
for getting user input:
Filtering is called from here:
filtering method:
UI binding:
ItemsSource="{Binding FilteredItems,Mode=Two-way}"
I ran the code with some breakpoints and values and event are there, only UI is missing data. Tried changing background and foreground colours. Tried implementation using INotifyproperty changed. That didn't work also.
Beta Was this translation helpful? Give feedback.
All reactions