Select rows in data grid for update

If I understand you correctly, you want to step through each row and identify the rows that have the checked check boxes. If so, this should do the trick :

# Step through each template form (row) in the repeating panel.
for r in self.repeating_panel_1.get_components():
  # Step through all the components that make up the row.
  for c in r.get_components():
    if type(c) is CheckBox:
      print(c.checked)
7 Likes