Skip to main content
Nintex Community Menu Bar
Question

Remove 'trash can' and 'Add new row' controls from a repeating section

  • March 2, 2026
  • 1 reply
  • 13 views

I am pulling data from a SharePoint list and populating a repeating section within a form, which is working.  However, due to the nature of the data and the process, the data cannot be removed from the section or new data added.  So, how can I remove the 'trash can' and 'Add new row' controls from a repeating section?

1 reply

Simon Muntz
Forum|alt.badge.img+23
  • Collaborator
  • March 3, 2026

Hi ​@cgwtamu1 

Welcome to the community.
Under the styles tab, you can try adding the below CSS to your form to remove the add new row button and the rubbish bin icons.
 

.btn-repeating-section-new-row {    
display: none !important;
}

.ntx-repeating-section-overlay {
display: none !important;
}