-
Notifications
You must be signed in to change notification settings - Fork 776
Description
I have a master slide that contains a table and a placeholder, with the table set to autoPage when the table extends a certain number of rows. I am able to fill out the initial placeholder because the initial slide is available to me. But when addTable makes new slides, it's reference is created in the closure passed to getSlidesForTableRows's forEach and then thrown away
Ideally, addTable could return the references to these new pages so that any placeholders could be filled out, but I understand how that would break the fluid interface. Alternatively, if there were a way to access the slides array in gObjPptx, through a getSlideByPageNumber or whichever interface you feel properly encapsulates the details
Right now, my workaround is to set the text on the master directly, but this isn't ideal
Let me know if you need any clarification or whatever I can do to help