Editor: Inline vs. Full Row editing and the corresponding data object
Editor: Inline vs. Full Row editing and the corresponding data object
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