-
-
Notifications
You must be signed in to change notification settings - Fork 333
New issue
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
paper-select : parentElement is null error after using #1139
Comments
Hello again, Turns out the problem was introduced in .beta.27. Hope this helps. |
Running into this with |
I've run into this as well with paper-select, but when I tried using beta.27, when I try ember serve, though, I get a message saying, "Could not find the default SASS implementation." I've tried using different versions of ember-cli-sass (8.0.1, 9.0.1, 10.0.0 & 10.0.1) but this did not get rid of the error. Going back to v29 gets rid of this. @larryh did you run into this? |
I can't remember, as it was awhile ago. It does sound familiar, though. (Which probably doesn't help much.) |
@larryh could you share your package file that is using beta26? |
Sure. (Had to slap a ".txt" on the end because would not allow ".json" files to be attached) |
@larryh Thank you. beta26 got rid of the "parentElement is null" error. And I found I hadn't named a default implementation of Sass. |
Glad I could be of help. |
I faced the same issue with However, it'd be nice if this issue is fixed. Keep up the amazing work! :) |
It seem to be related to cibernox/ember-basic-dropdown#540 |
Can someone check on beta.30? |
It works on my side (beta.30 & ember 3.17) |
I'm still getting the null errors. Do I have to change @animationEnabled={{false}} in order for it to work? If so where do i put it. I tried adding it to a but that did not fix the issue either. |
@ctwoolsey what @alex9nadon meant was that on beta.30, ember-paper added |
Currently I see that I have version 1.1.3. This is when I am using beta.26.
…On Mon, May 11, 2020 at 10:59 PM Miguel Andrade ***@***.***> wrote:
@ctwoolsey <https://github.com/ctwoolsey> what @alex9nadon
<https://github.com/alex9nadon> meant was that on beta.30, ember-paper
added @animationEnabled={{false}}.
what version of ember-basic-dropdown are you using? You can check it with npm
ls ember-basic-dropdown.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1139 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AD6QVRSZ2V526TSJNYXPXV3RRDCRNANCNFSM4LQ7THTQ>
.
|
I suppose it fixes the issue partially. There's still a console.log error on |
@ctwoolsey please use beta.30 @shibulijack what console log do you see? |
So using beta 30, I see ember-basic-dropdown v 2.0.15
|
Getting the same error on my end with 1.0.0-beta.30 as @ctwoolsey above using |
@fiddler @ctwoolsey does running |
Yes, it returns |
It seems that the animate out error, causes a problem with ember-power-select-multiple. None of the selections get loaded. As soon as I downgraded back to beta 26, ember-power-select-multiple was able to work again. |
This is no longer happening with 1.0.0-beta.32. Seems this commit here prevents the error: d1336ee |
I am still seeing: "TypeError: Cannot read property 'appendChild' of null" And, ember-power-select-multiple is not showing my selections, when I try beta.32. |
Definitely still seeing this on beta32 |
Wondering if anyone has had any luck resolving this. I'm wanting to upgrade my ember version past 3.18 and am seeing deprecation warnings in ember-paper 1.0.0-beta.26. |
Hi,
First of all: thanks for all of the work you folks do on Ember Paper!
I just upgraded ember from 3.15 to 3.17, and ember-paper from .beta.26 to .beta.29 and am having a problem with ember-select.
The drop-down has a list of states, and when you select a state you get a list of the politicians in that state. It starts out ok, and when you select a state you get the correct list of pols, but in so doing you get a
parentElement is null
error (which you can see in the console) and the app's entire UI is frozen.Also note that in the last screenshot, the selected state, e.g. Massachusetts, does not appear in the select-box, instead the "Select A State" placeholder has "moved up" above the control and stayed there.
I have attached screenshots of the process (in order, i.e. 1_xxx, 2_yyy, 3_zzz). Here is the code that I use, which has worked for a long time - even with the new "Octane Way" of doing things.
Can someone shed some light on this? Obviously I had to back down to .beta.26 so I can use the app.
Actually, I guess I should try moving to .27 and then .28 to see exactly where this happens. I will do that and update this issue with my findings. In the meantime, here is the code that I use (it's a component):
` <PaperSelect
data-test-select-pols-state
@Label="State"
@Placeholder="Select a State"
@options={{this.states}}
@selected={{this.selectedState}}
@onchange={{fn this.filter "state"}}
class="column-control" as |state| >
{{state.name}}
</PaperSelect>
`
The text was updated successfully, but these errors were encountered: