Aggregate model condition is not activated from JS snippet on applying the filter from other model a I have model A - (Aggregate Model, with condition which is always off) and on Model B (Basic Model) there is a UI only formula field which is MODAL_LOOKUP to get the value for that specific row from the Model A.Now, the scenario is in this way, the Model B is using the UI only field to show the sum of multiple child for each row, which is working as expected.UI-only field on Model B- ABS( MODEL_LOOKUP( ModelA, sumOfAllChildRecords, {{KeyFieldfromModelAId}}, {{KeyFieldfromModel2Id}} ) ) And, on Model B there is multi-select picklist filter based on type of the child, So, I have created a action based on the filter condition, that whenever the condition is applied run a JS Snippet.JS Snippetvar params = arguments[0],$ = skuid.$;var filterItems = params.newValues;var ModelA = skuid.$M(‘ModelA’);var ChildTypeCondtion = ModelA.getConditionByName(‘ChildTypeCondtion’);ModelA.setCondition(ChildTypeCondtion,filterItems); ModelA.activateCondition(ChildTypeCondtion);This snippet is running whenev