We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
So I have a component that does exactly as described:
And everything works as expected! ...With one exception:
Uncaught Error: Assertion Failed: `<PowerSelectMultiple>` requires a `@searchField` when the options are not strings to remove options using backspace
Which is weird, because it actually does what I expect. What's up? Am I missing something?
Here's the template:
<PowerSelectMultiple @selected={{@selected}} @placeholder={{@placeholder}} @searchEnabled={{true}} @searchField={{false}} @search={{perform this.search}} @disabled={{@disabled}} @allowClear={{@allowClear}} @onChange={{fn (mut @selected)}} as |record searchTerm| > {{#if hasBlock}} {{yield record searchTerm}} {{else}} {{record.displayName}} {{/if}} </PowerSelectMultiple>
The text was updated successfully, but these errors were encountered:
We're running into the same error using the addon in a similar fashion. Hitting backspace with items in the select list provides the same exception:
<PowerSelectMultiple @renderInPlace={{true}} @searchEnabled={{true}} @search={{perform this.crewSearch}} @placeholder="Start typing name or username" @selected={{@selected}} @onChange={{perform @onChange}} as |crew|> {{crew.interviewer_name_and_username}} </PowerSelectMultiple>
@krainboltgreene - did you manage to find a solution/workaround for this one?
Sorry, something went wrong.
No branches or pull requests
So I have a component that does exactly as described:
And everything works as expected! ...With one exception:
Which is weird, because it actually does what I expect. What's up? Am I missing something?
Here's the template:
The text was updated successfully, but these errors were encountered: