You are viewing limited content. For full access, please sign in.

Question

Question

How to Hide the Table Add and Delete Row button in the Modern Form Designer

asked on August 17, 2023

Has anyone figured out how to Hide the Add and Delete Row button in a Table on the New Form Designer.

I have a data lookup that fills a table (creating rows). The Data can be of dynamic length so I don't want to use fixed length and then try to hide the rows.

0 0

Answer

SELECTED ANSWER
replied on August 17, 2023 Show version history

If you select append rows tot he rows populated and put 0 as max, the add goes away and the X's don't show.

4 0

Replies

replied on January 14

I know this is an old post but thought I would add this since I was searching for the same answer.

Add the following into the CSS.

 

 

.table-row-add {
  display: none !important;
}


.table-buttons {
  display: none !important;
}

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.