I have a scrip that iterates through a series of rows in a table and updates pricing based upon a few modifiers. It can take awhile to iterate through every row, so I was wondering if there was a way to only process the rows that have changed… is there a way to check for this in my each loop?
Here’s the loop code…
var quoteLines = skuid.model.getModel('QuoteLineList');<br>if (quoteLines.data.length > 0) {<br> $.each(quoteLines.data, function (i, row){ <br> // do stuff<br> }<br>}