-
Notifications
You must be signed in to change notification settings - Fork 427
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
Fix: Really replace jQuery append with native append for renderRows #640
Fix: Really replace jQuery append with native append for renderRows #640
Conversation
can you remove the |
I can remove the update on that file, but what I can see it doesn't empty it out. |
if you're running Yarn instead of npm, it might wipe it out, not sure if that is what happened |
Run npm install before cypress test only, I don't really know what happend with the comparing. Locally and when I check on the commited file so look it right. But probably no need of update that file anyway... |
@RasmusBergHogia The errors I get in our Salesforce environment is EDIT I think it's Salesforce that doesn't like - $canvasTopL.append(x.firstChild);
+ $canvasTopL.length > 0 ? $canvasTopL[0].appendChild(x.firstChild) : $canvasTopL.append(x.firstChild); hmm that doesn't always work since EDIT 2
which seems to be caused by |
- this PR fixes 2 issues identified in Frozen Grids and in Slickgrid-Universal lib
@ghiscoding I run cypress test for SlickGrid only, has not SlickGrid Universal and Aurelia SlickGrid project setup locally. |
@RasmusBergHogia it's ok, there's actually 2 issues in that same Example so it's a 2 in 1 😉 |
Unfortunately, I must have made a mistake when I tested my previous PR. For scripts run automatically still when they get appended. This is because the elements that are appended to are a jQuery HtmlElement, and therefore they don't use native append but jQuery append method.
So the new PR take out the html element first, and then make a append on it instead.