question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Hi There,

i am trying to implement this awesome Multiselect ComboBox. I followed the examples and have following setup Inside my ViewModel I used the LanguageItem Class with all the Interfaces

`

        var group = new LanguageItemGroup(0, "All Items");
        Items = new ObservableCollection<LanguageItem>
         {
        new LanguageItem
        {
            Id = "en-US",
            Name= "English (United States)",
            Group = group
        },
        new LanguageItem
        {
            Id = "it-IT",
            Name= "Italian (Italy)",
            Group = group
        },
        new LanguageItem
        {
            Id = "de-DE",
            Name= "German (Germany)",
            Group = group
        }
    };`

My Items ObservableCollection looks like this public ObservableCollection<LanguageItem> Items { get => _items ?? (_items = new ObservableCollection<LanguageItem>()); set { _items = value; OnPropertyChanged("Items"); } }

Inside XAML i used this Code <sdl:MultiSelectComboBox DataContext="{Binding }" ItemsSource="{Binding Items}" IsEditable="true" SelectionMode="Multiple"/>

The Items Collection is correctly called and returns the 3 Items i initialized in the viewmodel, but the MultiSelectComboBox only shows “No results found”

NoResults

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:13 (5 by maintainers)

github_iconTop GitHub Comments

1reaction
kt1996commented, Jul 9, 2020

I am encountering the same issue. Able to see the items bound to the control via itemsource in code using breakpoints but the combobox shows “No results found”. Was working perfectly in v1.0.16, updated to v1.0.18 and this issue pops up. Reverted back to 1.0.16 and its showing the items in dropdown list fine. Update- Tried with v1.0.17 also, it also works fine.

BTW Another infinite loop issue that i was facing with 1.0.16 & 1.0.17 if assigning itemsources to the comboxes after wpf’s initialize components in main initialisation seems to be resolved in 1.0.18. Came to raise an issue for it when i noticed the update and did that to end up with this issue…

0reactions
kt1996commented, Aug 5, 2020

Hello @Impertatore, Thanks a lot for the prompt reply. As suggested assigning data context after data tree is available by subscribing to the window’s event handler worked perfectly and it appears to be a different issue due to incorrect implementation on my end. Please close this issue back again, thank you!

Read more comments on GitHub >

github_iconTop Results From Across the Web

How To Fix “No Results Found” Error in Windows Search
How To Fix “No Results Found” Error in Windows Search · 1. Update Windows · 2. Remove Excluded Folders · 3. Restart the...
Read more >
[SOLVED] - How to fix - No Search results found
Easy steps to fix no search results found issue. ✓✓As a first step, check the search queries having no results using your analytics...
Read more >
12 Awesome No Results Page Examples (+6 UI Design ...
Landing on a “No Results Found” page that doesn't provide alternate products or information on what to do next, can easily make shoppers...
Read more >
I see "No results found" result every time I search for ...
I see "No results found" result every time I search for anything. And this issue only happens when I'm logged into my account....
Read more >
How to Fix "No Results Found" In Google Play Store?
How to fix the “No Results Found” error in Google Play Store? · 1. Ensure Your Internet Is Stable · 2. Check The...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found