filtering using 'equals on of', where it's 1 of 700 things

LabKey Support Forum (Inactive)
filtering using 'equals on of', where it's 1 of 700 things trent  2011-07-10 22:05
Status: Closed
 
Hi bimber,

I don't have any suggestions for you - but I wonder if you can share how you tackled this? Did you figure out a solution for your above problem?

For collecting the id's did you just do like:

var output;
var array = editorGrid.getSelectionModel().selections.items;
for(i=0;i<array.length;i++){
output += arrayi.data.someId +',';
}

or is there a simpler way?