Your method of using modifier() is probably the best way. I would suggest using row().data() rather than the legacy fnGetData method, but either will work.
Edit - Having a method in Editor to get the ids of the rows being edited sounds sensible, I'll look into that.
Answers
How you get the value of a column depends a bit on what context you are in. When exactly do you want to get this value? Sample code please.
var id = Editor.field("id").val();
or
var id = this.field("id").val();
That doesn't work because id isn't a field in the editor
OK
Your method of using
modifier()
is probably the best way. I would suggest usingrow().data()
rather than the legacy fnGetData method, but either will work.Edit - Having a method in Editor to get the ids of the rows being edited sounds sensible, I'll look into that.
Allan
Thanks!