-
-
Notifications
You must be signed in to change notification settings - Fork 29
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
Row Detail View adding extra rows in excel export #390
Comments
@RasmusBergHogia Your suggestion to skip these lines might be the only good solution, would you like to provide a PR (Pull Request)? BTW, the Row Detail plugin is actually how it works, you can provide a custom |
@ghiscoding I could make a PR on that, but not today for have some other work to be done first. |
sure thake your time, that'd be really great to get contributions, it's always welcome 😉 |
@RasmusBergHogia |
…tail fix(export): expanded Row Detail shouldn't be exported, fixes #390
@RasmusBergHogia Always remember to update both side at the same time. Cheers and thanks for the feedback |
I'm submitting a Bug report
Your Environment
I have test this on Aurelia Slickgrid source code with adding Slickgrid-Universal Excel-Export on example 19.
Added to options:
Describe the Bug
If you expand row details view and then export to excel, you get extra rows in excel document.
Steps to Reproduce
Expected Behavior
You get original (filtered) rows in excel only.
Current Behavior
You get the hidden extra rows which is add for row details views in the excel file.
Rows added (visible by I hide row details view):
Result in excel:
Possible Solution
For some reason the extra rows has what I think empty dataview inside of them:
So one solution could be that ignore items with getItem in them in method pushAllGridRowDataToArray of excelExport.service.ts
The text was updated successfully, but these errors were encountered: