Multi-Select Grid View Items

I'm using the grid component to display thumbnails for an image gallery, and I want to be able to give my users the ability to check off images they would like to export into a zip folder.

Is it possible to access the true/false values of the checkboxes which are nested inside of each container in the gridview?

1 Like

You could create a variable with each of the primary keys of the grid as properties. When you switch the checkbox, alter the property value of your variable.

Just make sure your grid has a primary key
image

Yes this seems to work awesome. Thanks!

1 Like