Thanks Guys.
Daniel, I am using the filtered model without groups so getGroups is
not the one :) Here is the example:
http://mleibman.github.com/SlickGrid/examples/example4-model.html
Michael, thanks that is almost there. I notice getLength looks like
this
function getLength() {
return rows.length;
}
So rows contains the currently visible elements. Is there a function
that returns the entire rows array? I can get it by getting the length
with getLength and looping with dataView.getItem(index), but something
like this would be smoother no?
function getRows() {
return rows;
}
I guess we can call this now a feature request, would be sweet to be
able to do this.