I want create delete feeback icon. Till I can know the feedback of deleted data.
I do not know how you are actually “deleting” rows (physically deleting them usually is not a good practice. Hope you have a ‘status’ column to keep the “deleted” rows as records). You can capture user input by using INPUT().
See this document
Hi @TeeSee1
I want that if someone deletes the data, then my users can write to delete it before deleting it.
Even if the use writes something, if the row is deleted, then you have nothing left.
Do you have a separate table to capture users’ comments? Also what information regarding the deleted records do you retain? If the key is the only thing you keep, then you really do not know what was deleted.
I think having a status field that indicates whether the row is deleted or not makes more sense. You can use input() to capture the user’s comment as well as set the status to deleted in one action.