Initializing help system before first use

View Properties and Array Filters

Another very useful feature of view properties is that you can use them within array filter callbacks for your scenario observers.

So you can prevent the browser from having to download unnecessary elements of your arrays.

To expand on the previous example; instead of fetching the entire array you could instead instruct the scenario observer to filter the array by the selected value.
// Array filter using a view property
view.withFirstScenario()
   .withViewProperties('selectedCountry')
   .withEntities('Population')
   .filter('Population', function(viewProperties) {
       var country = viewProperties.get('selectedCountry');
       return {'Country': [country]};
   })
   .notify(function(scenario, viewProperties) {
       var populations = scenario.getArray('Population');
       var country = viewProperties.get('selectedCountry');
       // This will get the population for the selected country
       var population = populations.getValue([country]);
   })
   .start();

You can see from the above example that a view properties accessor is passed into the filter callback as the first argument. This is again an instance of MaskedViewProperties and only allows access to view properties that are being observed by the scenario observer.

© 2001-2025 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.