I'm using editor to allow users to perform edits on multiple tables. At the moment the page has three datatables but ultimately will have another four. Editor works a treat for updating the tables individually but I also have a use case whereby the user will need to trigger a blanket update of all the tables - because the update needs to be performed as a single database transaction, I can't simply simply trigger a series of individual editor submits. Instead I'm using various parts of the editor and datatables APIs to compile a single JSON object and submit this to the server. It's working perfectly fine - when the data is returned from the server, I simply redraw all the affected tables. What I'm missing though is the nice visual effect that happens when I use editor to update a single table - the affected rows glow blue for a few moments, fading in and out nicely. Is there a way that this "glow" effect can be invoked through the API or could someone point me to the relevant part of the source code so that I can manually reproduce it.
↧