Inline Editor - value entered by the user
Inline Editor - value entered by the user
Leju Palakapilly
Posts: 7Questions: 5Answers: 0
How do I get the value entered in a cell when using the inline editing feature.
I tried using
table.cell(table.row(this), 'ownerId').data(); //cell.data()
But the value returned is undefined.
Thanks.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
That should work, depending on when it's called (as
this
would need context). You could also use the /Editor eventpostEdit
, the third arg is the data.When are you calling this? After the update has been made, or when editing is still in progress?
Colin