Editor: edit button
Editor: edit button
celiahuang
Posts: 17Questions: 5Answers: 0
is there a way to know how many times a row has been edited by users?
current function seems to just override row data.
Is it possible to create intermediate data entries for all the edits that have been made in the past?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
rather, if the 'edit' button can calculate average scores of all past edits, that would be great too!
Hi,
This sounds like a perfect situation for server-side events. You could listen for the
preEdit
event and update a field's value based on that.Allan
thank you.