
Great news! If anyone have had this problem, that they want to place an action button inside a table cell inside a repeating section, and realised that the action button no longer triggers, then this is the solution for you! Here is the magical CSS that fixes this problem! div.repcontainer:not(.editmode) div.repitem td button[type="action"],
div.repcontainer:not(.editmode) div.repitem th button[type="action"] {
position: relative;
} For some reason, setting an action buttons position to be relative, makes it activate correctly. Note that I have added a :not(.editmode) to the CSS. This is because, if the button has position relative, while your are editing a repeating section, then the button is placed above the move and the delete button. As for visuals this does not change anything about how the button is presented, as long as the button is the only element inside the cell. Disclaimer For all the Flex box and Grid crusaders: Yes I know , we are not suppose to use tables, but some older sheets use them and might suffer from this problem.