I would like for newly created rows to be automatically selected. I've tried the following code:
editor.on('postCreate', function (e, json, data, id) {
table.row('#' + id).select();
});
It looks like the data is already in the table at that point, but I can't query out the row yet. Is there another event that I could attach this to?