Alternate row colors & add timestamp on check event

Hi, thanks for the quick answer!

I did:

# in init
self.color_rows(self.repeating_panel_1)

def color_rows(self, rep):
  for i, r in enumerate(rep.get_components()):
    if not i%2:
      r.background='theme:Gray 200'

and worked ok, however I needed to add a spacer to have some padding around the row.

I have read the documentation you link…will do some more experiments today.
Thanks!