which field is edited
which field is edited
meekaaku
Posts: 11Questions: 4Answers: 0
my table consists of fields which has data from multiple db tables (combined via joins). I am not using the php backend library, instead relying on the api data sent.
when a cell is edited inline/bubble, is there a way to know exactly which field was edited?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
You can use the
modifier()
method to get the selector (/modifier) that was used to trigger the editing. For example if you calledinline()
witheditor.inline( this );
-modifier()
would return whateverthis
was (typically a cell node).Allan
allan,
thanks. how do i add that info to the json payload that is sent to the server?
You can use the
preSubmit
event to add additional information that is to be sent to the server.Allan
thanks