Editor: Inline vs. Full Row editing and the corresponding data object
Editor: Inline vs. Full Row editing and the corresponding data object
![rldean1](https://secure.gravatar.com/avatar/c9be3e8e0a2850a1329d45a7294eae2c/?default=https%3A%2F%2Fvanillicon.com%2Fc9be3e8e0a2850a1329d45a7294eae2c_200.png&rating=g&size=120)
I'm suing Editor's ajax
function to intercept data.
I noticed that the data object for inline editing is different that the object for full row editing.
* Full Row editing literally includes the full row in the data object
* Inline editing only includes the the modified cell, and DT_RowId
* ...if you include render
on a column, that shows up in Inline editing as well
ANYWAY... How could I include the remaining cell values during an Inline edit?
On the DB side, I'm doing an UPDATE of the target... so I end up overwriting the other values...
This question has an accepted answers - jump to answer
Answers
This example shows how it can be done. The
submit
option of theformOptions
obejct is used to control this.Allan