cross model linked conditions

This would certainly work. As Matt has done, you could name all the filters in each model with the same names so that you could create a snippet to loop through the models in order to update each of their conditions and then query them after which.

If you want to update every model in your page with your ui only fields, then you could loop through them using skuid.model.list(). If not, create an array of the model id’s to loop through in this way.

var models = [‘model1’,‘model2’,…],
      model;


$.each(models, function(m,modelid)({
   model = skuid.$M(‘modelid’)
   // update model conditions
   …
});