From the SKUID model.model page ( skuid.model.Model — Skuid v15.1.6 Documentation ) you can flag a row for deletion in javascript using the deleteRow function, but if you’re flagging many rows for deletion (several thousand) you need to loop over all of them and flag each of them which appears to run very slowly (I assume it also invokes a display update).
Like the updateRows function that allows you to pass many rows at once and only have a single display update, is there some sort of deleteRows function? There doesn’t appear to be. Is there another way to go about this that is more efficient than looping through the whole model and running deleteRow on each row?
Thanks!