Is it possible to update one row in a dataset when not using a dynamic page?

I have set up an ‘admin’ page to easily manage my members collection. Once a user has signed up, they need to be approved before they can access pages on the site so the ‘admin’ page will display a list of members and their ‘approved’ status. I am returning the records in a repeater on a normal page. Is it possible to add a button for each record displayed that will only update that record?

eg. new user has signed up and ‘approved’ status is false. I want to display a button next to this user that will allow admin to approve them as a member and therefore update only that row in the dataset?

Is this possible on a normal page or does it need to be dynamic?

Thanks :slight_smile:

1 Like

Hey
You can just drag in a button inside the repeater and the onClick event will handle that item only. Then use the getCurrentItem inside your code to get the selected item that was clicked.

1 Like

Great! I thought that getCurrentItem only worked on a dynamic page but I’ll give it a go and see how I get on! :slight_smile: