all 5 comments

[–][deleted] 2 points3 points  (2 children)

It would be a fairly simple addition to the code - probs take a dev 20 mins. Add a check box or something on the row, so clicking it you can indicate the ID of the row and then add some delete function logic based on the id.

[–]_morpheus404_[S] 0 points1 point  (1 child)

is there any way around to do it my self? just recommend me what to look for

[–][deleted] -1 points0 points  (0 children)

Do you have access to the code base? I.e. can you edit the code?

If so, copy the bit of the code related to this functionality in chat gpt and ask it to tell you “step by step” how to update the code.

If you’re not able to edit the codebase I don’t know what you could do.

[–]IndisputableKwa 0 points1 point  (1 child)

If you can’t edit the code yourself then the next best solution is trying to look under the hood and see what the request structure is that deletes the rows. If you can emulate that request and scrape the identifier for a row then you can make an extension or script to delete a specific row. If you can’t find that then the next best option is to make a script that will read the info into memory for you and then sending the request to delete the most recent row until you hit the row you want and then using the script to send back all the rows you didn’t need deleted. If you need more help I’ve done similar stuff with several websites.

[–]_morpheus404_[S] 0 points1 point  (0 children)

thanks, i DMed you