-
Notifications
You must be signed in to change notification settings - Fork 528
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
tbl: #86 add/remove row and column support #399
base: master
Are you sure you want to change the base?
Conversation
@scanny take a look please) |
@scanny 😞 |
ping @scanny |
Apologies @Ignisor, I'll take a look at this later this week. Generally, best practice is open a conversation before starting work so I expect your submission. I don't always have time to look at unsolicited PRs because so few of them meet the basic standards. But I see you've included tests so I'll take a closer look :) |
Hi @Ignisor, I've had a chance to take a look. I think the best next step is for you to draft an enhancement proposal page (aka. analysis page) on this we can use to hash out the design details. There's an existing There are a couple of general concerns I have. We can take those up as we work through the analysis document together, but here's a preview.
Let me know if you need help getting started or locating the bits you need for the document. |
Hi @scanny. Thanks for your reply. I will try to do stuff that you mentioned when I will have some more free time :) |
I've attempted to use the code you added (below) to add a new column with the same formatting to a table. It has created a new column, but the formatting is not the same. The column is transparent with black borders. Do you know why this hasn't worked?
|
It's been a while since this has been asked, but here is my hacky extension to ignisor's table.py pull request. Allows me to copy a certain row and insert it into the table any number of times. Not up to scanny standards, but may be helpful to reference.
|
@Ignisor I used this code to add a column and add text however the text doesnt show in powerpoint. Oddly enough, if you open the pptx in google slides or WPS it shows but not in powerpoint. Any idea if adding text to the newly added columns work for you using this code? |
Made something for my needs thanks to this PR:
|
#86
Added methods for adding and deleting row/column in _RowCollection and _ColumnCollection classes.