Highlight rows of a table that meet a certain inactive model condition?

Actually my previous post is really dumb. Try this:

1) Clone your Interaction model and call it “InteractionSubquery”.
2) Change the subquery to always be on.
3) In your snippet, check if the current rows Id exists in the model that has the subquery on, that will indicate that it matches the criteria :

e.g.

var interactionSubquery= skuid&#46;model&#46;getModel('InteractionSubquery');<br />var Id = field&#46;row&#46;Id;<br />if(interactionSubquery&#46;getRowById(Id) != null){<br />&nbsp; &nbsp; highlightRow();<br />}



PROS: This should work awesomely
CONS: None that I can think of